tests-data.js 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. export default ([
  2. { title: "Abort signal (read)", script: "./test-abort-signal-read.js" },
  3. { title: "Abort signal (write)", script: "./test-abort-signal-write.js" },
  4. { title: "Uint8Array", script: "./test-array.js" },
  5. { title: "Base 64", script: "./test-base64.js" },
  6. { title: "Blob", script: "./test-blob.js" },
  7. { title: "Codecs interoperability", script: "./test-codecs-interoperability.js", env: "browser" },
  8. { title: "Crypto", script: "./test-crypto.js" },
  9. { title: "Custom IO classes", script: "./test-custom-io.js" },
  10. { title: "Data descriptor signature", script: "./test-data-descriptor-signature.js" },
  11. { title: "Data descriptor", script: "./test-data-descriptor.js" },
  12. { title: "Empty zip file", script: "./test-empty.js" },
  13. { title: "Extended timestamp", script: "./test-extended-timestamp.js" },
  14. { title: "Extra field", script: "./test-extra-field.js" },
  15. { title: "Fflate", script: "./test-fflate.js", env: "browser" },
  16. { title: "Fflate (no worker)", script: "./test-fflate-no-worker.js", sanitizeResources: false },
  17. { title: "Filesystem base 64", script: "./test-fs-base64.js" },
  18. { title: "Filesystem export", script: "./test-fs-export-options.js" },
  19. { title: "Filesystem HTTP import", script: "./test-fs-http-import.js" },
  20. { title: "Filesystem HTTP reader", script: "./test-fs-http-reader.js" },
  21. { title: "Filesystem replace entry", script: "./test-fs-replace.js" },
  22. { title: "Filesystem text", script: "./test-fs-text.js" },
  23. { title: "Filesystem unzip uncompressed file", script: "./test-fs-unzip-store.js" },
  24. { title: "Filesystem test", script: "./test-fs.js" },
  25. { title: "HTTP crypto", script: "./test-http-crypto.js" },
  26. { title: "HTTP zip64", script: "./test-http-zip64.js" },
  27. { title: "Invalid CRC", script: "./test-invalid-crc.js" },
  28. { title: "No worker", script: "./test-no-worker.js" },
  29. { title: "Pako", script: "./test-pako.js", env: "browser" },
  30. { title: "Pako (no worker)", script: "./test-pako-no-worker.js" },
  31. { title: "Parallel reads", script: "./test-parallel-reads.js" },
  32. { title: "Parallel writes (auto buffered)", script: "./test-parallel-writes-auto-buffered.js" },
  33. { title: "Parallel writes (ordered)", script: "./test-parallel-writes-ordered.js" },
  34. { title: "Parallel writes", script: "./test-parallel-writes.js" },
  35. { title: "Readable Stream", script: "./test-readable-stream.js" },
  36. { title: "Safe closing", script: "./test-safe-closing.js" },
  37. { title: "Service worker", script: "./test-sw.js", env: "browser" },
  38. { title: "Store", script: "./test-store.js" },
  39. { title: "Worker timeout", script: "./test-worker-timeout.js" },
  40. { title: "Wrapped zip file", script: "./test-wrapped.js" },
  41. { title: "Writable Stream", script: "./test-writable-stream.js" },
  42. { title: "Zip64 (auto)", script: "./test-zip64-auto.js" },
  43. { title: "Zip64 crypto", script: "./test-zip64-crypto.js" },
  44. { title: "Zip64", script: "./test-zip64.js" },
  45. { title: "Zipcrypto", script: "./test-zipcrypto.js" }
  46. ]);