Skip to content

Commit

Permalink
Removes parcel smoke test, as it replaces process with {}
Browse files Browse the repository at this point in the history
  • Loading branch information
hediet committed Jan 23, 2024
1 parent b0330f8 commit 9488e7e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/smoke/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 9488e7e

Please sign in to comment.