Skip to content

Commit 9e4368a

Browse files
authored
adds amd and firefox/webkit to smoke tests (#4967)
1 parent d2c20a1 commit 9e4368a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/smoke/runner.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ async function runTests() {
4242
// uncomment to shortcircuit and run a specific combo
4343
// await runTest('webpack', 'chromium'); return;
4444
/** @type {PackagerKind[]} */
45-
const testTypes = ['webpack', 'esbuild', 'vite'];
45+
const testTypes = ['webpack', 'esbuild', 'vite', 'amd'];
4646
// TODO: add parcel! (this currently fails because parcel replaces process with {})
4747

4848
for (const type of testTypes) {
4949
await runTest(type, 'chromium');
50-
// await runTest(type, 'firefox');
51-
// await runTest(type, 'webkit');
50+
await runTest(type, 'firefox');
51+
await runTest(type, 'webkit');
5252
}
5353
}
5454

0 commit comments

Comments
 (0)