Skip to content

Commit 4e79ccb

Browse files
committed
Update --no-allow-only description
1 parent ae85b05 commit 4e79ccb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/buildtools/src/commands/testing.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)