Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
somus committed Jun 21, 2016
1 parent b1df01a commit 38ba092
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/main-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const exec = pify(childProcess.exec);


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


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

0 comments on commit 38ba092

Please sign in to comment.