Skip to content

Commit b382dc5

Browse files
committed
Test compressed files without prefetching
1 parent 85eacd5 commit b382dc5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ jobs:
3939
- name: Install Node Packages
4040
run: npm ci
4141

42+
- name: Decompress compressed files
43+
run: node utils/compress.mjs -d -k
44+
4245
- name: Cache jsvu Binaries
4346
uses: actions/cache@v4
4447
with:

tests/run-shell.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async function runTests() {
109109
let success = true;
110110
success &&= await runTest("Run UnitTests", () => sh(shellBinary, UNIT_TEST_PATH));
111111
success &&= await runCLITest("Run Single Suite", shellBinary, "proxy-mobx");
112-
success &&= await runCLITest("Run Tag No Prefetch", shellBinary, "proxy", "--no-prefetch");
112+
success &&= await runCLITest("Run Tag No Prefetch", shellBinary, "proxy", "argon2-wasm", "--no-prefetch");
113113
success &&= await runCLITest("Run Disabled Suite", shellBinary, "disabled");
114114
success &&= await runCLITest("Run Default Suite", shellBinary);
115115
if (!success)

0 commit comments

Comments
 (0)