Forráskód Böngészése

adds amd and firefox/webkit to smoke tests (#4967)

Henning Dieterichs 3 hete
szülő
commit
9e4368a8e9
1 módosított fájl, 3 hozzáadás és 3 törlés
  1. 3 3
      test/smoke/runner.js

+ 3 - 3
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');
 	}
 }