Skip to content

Commit 38ba092

Browse files
committed
fix tests
1 parent b1df01a commit 38ba092

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/main-test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ const exec = pify(childProcess.exec);
66

77

88
test('shows help on --help', async t => {
9-
const stdout = await exec('../bin/main.js --help');
10-
t.is(stdout.trim(), `Usage: main [options] [command]
9+
const stdout = await exec('../bin/mern.js --help');
10+
t.is(stdout.trim(), `Usage: mern [options] [command]
1111
1212
1313
Commands:
@@ -29,8 +29,8 @@ test('shows help on --help', async t => {
2929

3030

3131
test('shows help on --h', async t => {
32-
const stdout = await exec('../bin/main.js --help');
33-
t.is(stdout.trim(), `Usage: main [options] [command]
32+
const stdout = await exec('../bin/mern.js --help');
33+
t.is(stdout.trim(), `Usage: mern [options] [command]
3434
3535
3636
Commands:

0 commit comments

Comments
 (0)