From 9e4368a8e92e9035d9bdc719a90f908a01067c41 Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Fri, 29 Aug 2025 10:50:02 +0200 Subject: [PATCH] adds amd and firefox/webkit to smoke tests (#4967) --- test/smoke/runner.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/smoke/runner.js b/test/smoke/runner.js index c238d59f..66f2d158 100644 --- a/test/smoke/runner.js +++ b/test/smoke/runner.js @@ -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'); } }