File tree Expand file tree Collapse file tree
lib/buildtools/src/commands Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export const getTestCommand = () => new Command('test')
4040 . addOption ( updateOption )
4141 . addOption ( coverageOption )
4242 . addOption ( silentOption )
43- . option ( '--no-allow-only' , 'Allow the use of .only in tests' , ! process . env . CI )
43+ . option ( '--no-allow-only' , 'Disallow the use of .only in tests' , ! process . env . CI )
4444 . option ( '-p, --project <directory>' , 'Path to the directory that is the root of your test project' )
4545 . argument ( '[patterns...]' , 'Test patterns to filter by.' )
4646 . action ( async ( patterns , { mode, project, ...options } ) => {
@@ -78,7 +78,7 @@ export const getTestAllCommand = () => new Command('testall')
7878 . addOption ( updateOption )
7979 . addOption ( coverageOption )
8080 . addOption ( silentOption )
81- . option ( '--no-allow-only' , 'Allow the use of .only in tests' , ! process . env . CI )
81+ . option ( '--no-allow-only' , 'Disallow the use of .only in tests' , ! process . env . CI )
8282 . action ( async ( patterns , { mode, ...options } ) => {
8383 const configs = await getAllTestConfigurations ( ! ! options . watch ) ;
8484 if ( configs . length === 0 ) {
You can’t perform that action at this time.
0 commit comments