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 d2c20a1 commit 9e4368aCopy full SHA for 9e4368a
test/smoke/runner.js
@@ -42,13 +42,13 @@ async function runTests() {
42
// uncomment to shortcircuit and run a specific combo
43
// await runTest('webpack', 'chromium'); return;
44
/** @type {PackagerKind[]} */
45
- const testTypes = ['webpack', 'esbuild', 'vite'];
+ const testTypes = ['webpack', 'esbuild', 'vite', 'amd'];
46
// TODO: add parcel! (this currently fails because parcel replaces process with {})
47
48
for (const type of testTypes) {
49
await runTest(type, 'chromium');
50
- // await runTest(type, 'firefox');
51
- // await runTest(type, 'webkit');
+ await runTest(type, 'firefox');
+ await runTest(type, 'webkit');
52
}
53
54
0 commit comments