Skip to content

Commit 193fb2c

Browse files
authored
Fix command name (#4)
1 parent 97aef58 commit 193fb2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ console.log(' 🔌 Supercharged End 2 End Testing 🌟');
4040
let projectName;
4141
let useYarn;
4242

43-
const program = new commander.Command('Create CodeceptJS')
43+
const program = new commander.Command('npx create-codeceptjs')
4444
.version(packageJson.version)
4545
.arguments('[project]')
4646
.usage(`${chalk.green('[project]')} [options]`)
@@ -75,7 +75,7 @@ if (typeof projectName === 'undefined' && !existsSync('package.json')) {
7575
console.log('For example:');
7676
console.log(` ${chalk.cyan(program.name())} ${chalk.green('codeceptjs-tests')}`);
7777
console.log();
78-
console.log('To update current project to include codeceptjs packages, run this script in a directory with package.json');
78+
console.log('To update current project to include CodeceptJS packages, run this script in a directory with package.json');
7979
console.log(
8080
`Run ${chalk.cyan(`${program.name()} --help`)} to see all options.`
8181
);

0 commit comments

Comments
 (0)