版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

chunk-constants.bc18a549.js 695 B

123456789101112131415161718192021222324252627282930313233343536
  1. const defaultPort = 51204;
  2. const EXIT_CODE_RESTART = 43;
  3. const API_PATH = "/__vitest_api__";
  4. const configFiles = [
  5. "vitest.config.ts",
  6. "vitest.config.mts",
  7. "vitest.config.cts",
  8. "vitest.config.js",
  9. "vitest.config.mjs",
  10. "vitest.config.cjs",
  11. "vite.config.ts",
  12. "vite.config.mts",
  13. "vite.config.cts",
  14. "vite.config.js",
  15. "vite.config.mjs",
  16. "vite.config.cjs"
  17. ];
  18. const globalApis = [
  19. "suite",
  20. "test",
  21. "describe",
  22. "it",
  23. "chai",
  24. "expect",
  25. "assert",
  26. "expectTypeOf",
  27. "assertType",
  28. "vitest",
  29. "vi",
  30. "beforeAll",
  31. "afterAll",
  32. "beforeEach",
  33. "afterEach"
  34. ];
  35. export { API_PATH as A, EXIT_CODE_RESTART as E, configFiles as c, defaultPort as d, globalApis as g };