diff --git a/test/module.test.js b/test/module.test.js index 8df0e5f..4ca735e 100644 --- a/test/module.test.js +++ b/test/module.test.js @@ -16,6 +16,6 @@ it('adds e to the user PATH', () => { }); it('can execute e', () => { - const info = execSync('e'); + const info = execSync('e --help'); assert.match(info.toString(), /Electron build tool/); });