Browse Source

Make tests use the correct binary

master
Leo Lamprecht 8 years ago
parent
commit
058c3f63ab
No known key found for this signature in database GPG Key ID: B08517883D5E0E10
  1. 2
      test/args-parsing.js

2
test/args-parsing.js

@ -66,7 +66,7 @@ test('"now alias --help" is the same as "now --help alias"', async t => {
*/
function now(...args) {
return new Promise((resolve, reject) => {
const command = path.resolve(__dirname, '../bin/now')
const command = path.resolve(__dirname, '../bin/now.js')
const now = spawn(command, args)
let stdout = ''

Loading…
Cancel
Save