@@ -92,7 +92,7 @@ describe(RushCommandLineParser.name, () => {
92
92
} ) ;
93
93
94
94
describe ( 'in basic repo' , ( ) => {
95
- describe ( ` 'build' action` , ( ) => {
95
+ describe ( " 'build' action" , ( ) => {
96
96
it ( `executes the package's 'build' script` , async ( ) => {
97
97
const repoName : string = 'basicAndRunBuildActionRepo' ;
98
98
const instance : IParserTestInstance = getCommandLineParserInstance ( repoName , 'build' ) ;
@@ -124,7 +124,7 @@ describe(RushCommandLineParser.name, () => {
124
124
} ) ;
125
125
} ) ;
126
126
127
- describe ( ` 'rebuild' action` , ( ) => {
127
+ describe ( " 'rebuild' action" , ( ) => {
128
128
it ( `executes the package's 'build' script` , async ( ) => {
129
129
const repoName : string = 'basicAndRunRebuildActionRepo' ;
130
130
const instance : IParserTestInstance = getCommandLineParserInstance ( repoName , 'rebuild' ) ;
@@ -157,8 +157,8 @@ describe(RushCommandLineParser.name, () => {
157
157
} ) ;
158
158
} ) ;
159
159
160
- describe ( ` in repo with 'rebuild' command overridden` , ( ) => {
161
- describe ( ` 'build' action` , ( ) => {
160
+ describe ( " in repo with 'rebuild' command overridden" , ( ) => {
161
+ describe ( " 'build' action" , ( ) => {
162
162
it ( `executes the package's 'build' script` , async ( ) => {
163
163
const repoName : string = 'overrideRebuildAndRunBuildActionRepo' ;
164
164
const instance : IParserTestInstance = getCommandLineParserInstance ( repoName , 'build' ) ;
@@ -190,7 +190,7 @@ describe(RushCommandLineParser.name, () => {
190
190
} ) ;
191
191
} ) ;
192
192
193
- describe ( ` 'rebuild' action` , ( ) => {
193
+ describe ( " 'rebuild' action" , ( ) => {
194
194
it ( `executes the package's 'rebuild' script` , async ( ) => {
195
195
const repoName : string = 'overrideRebuildAndRunRebuildActionRepo' ;
196
196
const instance : IParserTestInstance = getCommandLineParserInstance ( repoName , 'rebuild' ) ;
@@ -223,8 +223,8 @@ describe(RushCommandLineParser.name, () => {
223
223
} ) ;
224
224
} ) ;
225
225
226
- describe ( ` in repo with 'rebuild' or 'build' partially set` , ( ) => {
227
- describe ( ` 'build' action` , ( ) => {
226
+ describe ( " in repo with 'rebuild' or 'build' partially set" , ( ) => {
227
+ describe ( " 'build' action" , ( ) => {
228
228
it ( `executes the package's 'build' script` , async ( ) => {
229
229
const repoName : string = 'overrideAndDefaultBuildActionRepo' ;
230
230
const instance : IParserTestInstance = getCommandLineParserInstance ( repoName , 'build' ) ;
@@ -255,7 +255,7 @@ describe(RushCommandLineParser.name, () => {
255
255
} ) ;
256
256
} ) ;
257
257
258
- describe ( ` 'rebuild' action` , ( ) => {
258
+ describe ( " 'rebuild' action" , ( ) => {
259
259
it ( `executes the package's 'build' script` , async ( ) => {
260
260
// broken
261
261
const repoName : string = 'overrideAndDefaultRebuildActionRepo' ;
@@ -288,7 +288,7 @@ describe(RushCommandLineParser.name, () => {
288
288
} ) ;
289
289
} ) ;
290
290
291
- describe ( ` in repo with 'build' command overridden as a global command` , ( ) => {
291
+ describe ( " in repo with 'build' command overridden as a global command" , ( ) => {
292
292
it ( `throws an error when starting Rush` , async ( ) => {
293
293
const repoName : string = 'overrideBuildAsGlobalCommandRepo' ;
294
294
@@ -300,7 +300,7 @@ describe(RushCommandLineParser.name, () => {
300
300
} ) ;
301
301
} ) ;
302
302
303
- describe ( ` in repo with 'rebuild' command overridden as a global command` , ( ) => {
303
+ describe ( " in repo with 'rebuild' command overridden as a global command" , ( ) => {
304
304
it ( `throws an error when starting Rush` , async ( ) => {
305
305
const repoName : string = 'overrideRebuildAsGlobalCommandRepo' ;
306
306
@@ -312,7 +312,7 @@ describe(RushCommandLineParser.name, () => {
312
312
} ) ;
313
313
} ) ;
314
314
315
- describe ( ` in repo with 'build' command overridden with 'safeForSimultaneousRushProcesses=true'` , ( ) => {
315
+ describe ( " in repo with 'build' command overridden with 'safeForSimultaneousRushProcesses=true'" , ( ) => {
316
316
it ( `throws an error when starting Rush` , async ( ) => {
317
317
const repoName : string = 'overrideBuildWithSimultaneousProcessesRepo' ;
318
318
@@ -324,7 +324,7 @@ describe(RushCommandLineParser.name, () => {
324
324
} ) ;
325
325
} ) ;
326
326
327
- describe ( ` in repo with 'rebuild' command overridden with 'safeForSimultaneousRushProcesses=true'` , ( ) => {
327
+ describe ( " in repo with 'rebuild' command overridden with 'safeForSimultaneousRushProcesses=true'" , ( ) => {
328
328
it ( `throws an error when starting Rush` , async ( ) => {
329
329
const repoName : string = 'overrideRebuildWithSimultaneousProcessesRepo' ;
330
330
0 commit comments