From 9488e7e078b8252e0e5401759be3b025384e1119 Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Tue, 23 Jan 2024 17:40:32 +0100 Subject: [PATCH] Removes parcel smoke test, as it replaces process with {} --- test/smoke/runner.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/smoke/runner.js b/test/smoke/runner.js index 02f1635f..1e5f109d 100644 --- a/test/smoke/runner.js +++ b/test/smoke/runner.js @@ -42,7 +42,8 @@ async function runTests() { // uncomment to shortcircuit and run a specific combo // await runTest('webpack', 'chromium'); return; /** @type {PackagerKind[]} */ - const testTypes = ['amd', 'webpack', 'esbuild', 'vite', 'parcel']; + const testTypes = ['amd', 'webpack', 'esbuild', 'vite']; + // TODO: add parcel! (this currently fails because parcel replaces process with {}) for (const type of testTypes) { await runTest(type, 'chromium');