adds amd and firefox/webkit to smoke tests

This commit is contained in:
Henning Dieterichs 2025-08-29 09:48:18 +02:00
parent d2c20a1ad7
commit e80ef78289

View file

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