File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -269,11 +269,7 @@ export type PushOptions = Partial<ProjectSettings> &
269
269
export type ProjectSettings = {
270
270
id : string ;
271
271
url : string ;
272
- /**
273
- * @deprecated Since 9.1.0 , we recommend using `spaces` instead.
274
- */
275
272
space : string ;
276
- spaces ?: string [ ] ;
277
273
} ;
278
274
279
275
export type PlaywrightOptions = LaunchOptions &
@@ -288,7 +284,6 @@ export type SyntheticsConfig = {
288
284
playwrightOptions ?: PlaywrightOptions ;
289
285
monitor ?: MonitorConfig ;
290
286
project ?: ProjectSettings ;
291
- spaces ?: string [ ] ;
292
287
} ;
293
288
294
289
/** Runner Payload types */
Original file line number Diff line number Diff line change @@ -443,6 +443,7 @@ export default class Runner implements RunnerInfo {
443
443
retestOnFailure : options . retestOnFailure ,
444
444
enabled : options . enabled ,
445
445
fields : options . fields ,
446
+ spaces : options . spaces ,
446
447
} ) ;
447
448
448
449
const monitors : Monitor [ ] = [ ] ;
Original file line number Diff line number Diff line change @@ -70,7 +70,6 @@ export async function normalizeOptions(
70
70
: { } ;
71
71
72
72
options . params = Object . freeze ( merge ( config . params , cliArgs . params || { } ) ) ;
73
- options . spaces = merge ( config . spaces || [ ] , cliArgs . spaces || [ ] ) ;
74
73
options . fields = Object . freeze (
75
74
merge ( config . monitor ?. fields ?? { } , cliArgs ?. fields || { } )
76
75
) ;
You can’t perform that action at this time.
0 commit comments