瀏覽代碼

Removes parcel smoke test, as it replaces process with {}

Henning Dieterichs 1 年之前
父節點
當前提交
9488e7e078
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      test/smoke/runner.js

+ 2 - 1
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');