diff options
author | 2021-10-21 04:30:50 -0700 | |
---|---|---|
committer | 2021-10-21 04:30:50 -0700 | |
commit | 2d6a4a4956aad47b6f6f05e97bb577cdd1a33d10 (patch) | |
tree | 6785743707c1d690b67c7ee9ffbbb914df9a9303 | |
parent | f394581ed8e287181d632c0bfefe443c38a3919e (diff) | |
download | bun-2d6a4a4956aad47b6f6f05e97bb577cdd1a33d10.tar.gz bun-2d6a4a4956aad47b6f6f05e97bb577cdd1a33d10.tar.zst bun-2d6a4a4956aad47b6f6f05e97bb577cdd1a33d10.zip |
Split tests into separate .json file
-rw-r--r-- | integration/scripts/browser.js | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/integration/scripts/browser.js b/integration/scripts/browser.js index c3bd2e4a2..eae77291c 100644 --- a/integration/scripts/browser.js +++ b/integration/scripts/browser.js @@ -105,28 +105,7 @@ async function main() { await page.close(); } - const tests = [ - "/cjs-transform-shouldnt-have-static-imports-in-cjs-function.js", - "/bundled-entry-point.js", - "/export.js", - "/type-only-imports.ts", - "/global-is-remapped-to-globalThis.js", - "/multiple-imports.js", - "/ts-fallback-rewrite-works.js", - "/tsx-fallback-rewrite-works.js", - "/lodash-regexp.js", - "/unicode-identifiers.js", - "/string-escapes.js", - "/package-json-exports/index.js", - "/array-args-with-default-values.js", - "/forbid-in-is-correct.js", - "/code-simplification-neql-define.js", - "/spread_with_key.tsx", - "/styledcomponents-output.js", - "/void-shouldnt-delete-call-expressions.js", - "/custom-emotion-jsx/file.jsx", - "/react-context-value-func.tsx", - ]; + const tests = require("./snippets.json"); tests.reverse(); for (let test of tests) { |