@@ -17,7 +17,6 @@ export interface ScenarioComponents {
1717 default ?: boolean ;
1818 disabled ?: boolean ;
1919 platforms ?: string [ ] ;
20- singleFileOutput ?: boolean ;
2120 configFile : string ;
2221 tsserverConfig ?: TSServerConfig ;
2322}
@@ -29,7 +28,6 @@ export class Scenario {
2928 public readonly default ?: boolean ;
3029 public readonly disabled ?: boolean ;
3130 public readonly platforms ?: string [ ] ;
32- public readonly singleFileOutput ?: boolean ;
3331 public readonly configFile : string ;
3432 public readonly tsserverConfig ?: TSServerConfig ;
3533
@@ -45,7 +43,6 @@ export class Scenario {
4543 default ?: boolean ;
4644 disabled ?: boolean ;
4745 platforms ?: string [ ] ;
48- singleFileOutput ?: boolean ;
4946 tsserverConfig ?: TSServerConfig ;
5047 } ,
5148 ) {
@@ -58,7 +55,6 @@ export class Scenario {
5855 this . default = options && options . default ;
5956 this . disabled = options && options . disabled ;
6057 this . platforms = options && options . platforms ;
61- this . singleFileOutput = options && options . singleFileOutput ;
6258 this . configFile = configFile ;
6359 this . tsserverConfig = options && options . tsserverConfig ;
6460 }
@@ -241,7 +237,6 @@ export class Scenario {
241237 const { default : default_ = this . default } = components ;
242238 const { disabled = this . disabled } = components ;
243239 const { platforms = this . platforms } = components ;
244- const { singleFileOutput = this . singleFileOutput } = components ;
245240 const { configFile = this . configFile } = components ;
246241 const { tsserverConfig = this . tsserverConfig } = components ;
247242 if (
@@ -251,7 +246,6 @@ export class Scenario {
251246 && this . default === default_
252247 && this . disabled === disabled
253248 && this . platforms === platforms
254- && this . singleFileOutput === singleFileOutput
255249 && this . configFile === configFile
256250 ) {
257251 return this ;
@@ -261,7 +255,6 @@ export class Scenario {
261255 default : default_ ,
262256 disabled,
263257 platforms,
264- singleFileOutput,
265258 tsserverConfig,
266259 } ) ;
267260 }
@@ -278,7 +271,6 @@ export class Scenario {
278271 default : this . default ,
279272 disabled : this . disabled ,
280273 platforms : this . platforms && this . platforms . slice ( ) ,
281- singleFileOutput : this . singleFileOutput ,
282274 tsserverConfig : this . tsserverConfig ,
283275 } ;
284276 }
0 commit comments