Skip to content

Commit

Permalink
fix: tests are not running without --watch option
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed Apr 25, 2021
1 parent b3bc4f2 commit 8bea115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codeview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ const codeview = new Command<void>()
sig,
serve(),
runWebview(),
options.watch ? watch() : Promise.resolve(),
options.watch ? watch() : new Promise(() => {}),
]).then(exit).catch(exit);

welcome();
Expand Down

0 comments on commit 8bea115

Please sign in to comment.