We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a40854c commit d76600aCopy full SHA for d76600a
packages/cursorless-everywhere-talon-e2e/src/quickjsTest.ts
@@ -6,13 +6,17 @@ import talonMock from "./talonMock";
6
let hasFailed = false;
7
8
async function runTests() {
9
- await activate(talonMock, "test");
+ try {
10
+ await activate(talonMock, "test");
11
- console.log();
12
- console.log("Running quickjs tests");
+ console.log();
13
+ console.log("Running quickjs tests");
14
- await test("testTake", testTake);
15
- await test("testChuck", testChuck);
+ await test("testTake", testTake);
16
+ await test("testChuck", testChuck);
17
+ } catch (_error) {
18
+ hasFailed = true;
19
+ }
20
21
std.exit(hasFailed ? 1 : 0);
22
}
0 commit comments