|
@@ -42,13 +42,13 @@ async function runTests() {
|
|
// uncomment to shortcircuit and run a specific combo
|
|
// uncomment to shortcircuit and run a specific combo
|
|
// await runTest('webpack', 'chromium'); return;
|
|
// await runTest('webpack', 'chromium'); return;
|
|
/** @type {PackagerKind[]} */
|
|
/** @type {PackagerKind[]} */
|
|
- const testTypes = ['webpack', 'esbuild', 'vite'];
|
|
|
|
|
|
+ const testTypes = ['webpack', 'esbuild', 'vite', 'amd'];
|
|
// TODO: add parcel! (this currently fails because parcel replaces process with {})
|
|
// TODO: add parcel! (this currently fails because parcel replaces process with {})
|
|
|
|
|
|
for (const type of testTypes) {
|
|
for (const type of testTypes) {
|
|
await runTest(type, 'chromium');
|
|
await runTest(type, 'chromium');
|
|
- // await runTest(type, 'firefox');
|
|
|
|
- // await runTest(type, 'webkit');
|
|
|
|
|
|
+ await runTest(type, 'firefox');
|
|
|
|
+ await runTest(type, 'webkit');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|