From cdf1b68475c1abff944aa8040165e8b580f673e5 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Fri, 18 Mar 2022 22:53:56 -0700 Subject: [PATCH] fix: use e --help when testing usability of e --- test/module.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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/); });