Skip to content

Commit

Permalink
fixed e2e test. Needed to point to static instead of . for the args. …
Browse files Browse the repository at this point in the history
…(need to run electron static instead of electron . to run the built application).
  • Loading branch information
dustintownsend committed Jul 27, 2016
1 parent b59ad17 commit 4e5e73f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe('main window', function spec() {
before(async () => {
this.app = new Application({
path: electronPath,
args: ['.'],
args: ['static'],
});
return this.app.start();
});
Expand Down

0 comments on commit 4e5e73f

Please sign in to comment.