diff --git a/.github/workflows/test-all-packages.yml b/.github/workflows/test-all-packages.yml index f349620ef1c..4faeaeef6be 100644 --- a/.github/workflows/test-all-packages.yml +++ b/.github/workflows/test-all-packages.yml @@ -538,7 +538,7 @@ jobs: # END-RESTORE-BOILERPLATE - name: yarn test (zoe) - timeout-minutes: 20 + timeout-minutes: 30 run: cd packages/zoe && yarn test env: ESM_DISABLE_CACHE: true diff --git a/packages/agoric-cli/integration-tests/test-workflow.js b/packages/agoric-cli/integration-tests/test-workflow.js index 5230f805715..bbfd944748f 100644 --- a/packages/agoric-cli/integration-tests/test-workflow.js +++ b/packages/agoric-cli/integration-tests/test-workflow.js @@ -132,7 +132,11 @@ test('workflow', async t => { ]); finalizers.push(() => pkill(deployP.childProcess, 'SIGINT')); - timeout = setTimeout(deployResult.resolve, 120 * 1000, 'timeout'); + timeout = setTimeout( + deployResult.resolve, + TIMEOUT_SECONDS * 1000, + 'timeout', + ); const done = await Promise.race([deployResult.promise, deployP]); t.is(done, 0, `deploy successful before timeout`); clearTimeout(timeout); diff --git a/packages/eslint-config/eslint-config.json b/packages/eslint-config/eslint-config.json index 18a86f0c6c8..8f7e0725da0 100644 --- a/packages/eslint-config/eslint-config.json +++ b/packages/eslint-config/eslint-config.json @@ -81,6 +81,7 @@ "jsdoc/valid-types": "off" }, "ignorePatterns": [ + "coverage/**", "**/output/**", "bundles/**", "dist/**", diff --git a/packages/solo/test/test-home.js b/packages/solo/test/test-home.js index 76355d9507e..7587ce90fa0 100644 --- a/packages/solo/test/test-home.js +++ b/packages/solo/test/test-home.js @@ -156,7 +156,7 @@ test.serial('home.localTimerService createRepeater', async t => { const notifier = E(localTimerService).makeNotifier(1n, 1n); await E(notifier).getUpdateSince(); - t.is(1, handler.getCalls()); + t.truthy(handler.getCalls() >= 1); t.truthy(handler.getArgs()[0] > timestamp); }); diff --git a/packages/swingset-runner/src/main.js b/packages/swingset-runner/src/main.js index c8d30829182..b2f95df3ed7 100644 --- a/packages/swingset-runner/src/main.js +++ b/packages/swingset-runner/src/main.js @@ -1,4 +1,4 @@ -/* global globalThis __dirname */ +/* global __dirname */ import path from 'path'; import fs from 'fs'; import process from 'process';