Skip to content

Commit

Permalink
[wasm] Increase beforeAll timeout that loads wasm files (#6618)
Browse files Browse the repository at this point in the history
Increase the beforeAll timeout for fetching wasm files from 5 seconds to 30 to fix a Safari nightly failure.
  • Loading branch information
mattsoulanille authored Jul 12, 2022
1 parent 1190154 commit c582a99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tfjs-backend-wasm/src/setup_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ const customInclude = (testName: string) => {
};
setupTestFilters(TEST_FILTERS, customInclude);

beforeAll(setupCachedWasmPaths);
beforeAll(setupCachedWasmPaths, 30_000);

// Import and run all the tests from core.
// tslint:disable-next-line:no-imports-from-dist
Expand Down

0 comments on commit c582a99

Please sign in to comment.