diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-04-12 17:58:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-12 17:58:40 -0400 |
commit | 4e8d30fca19fa5fb588dd158da401407ff142e5a (patch) | |
tree | f726fa06fba1657f7bbf60c48a1490d562653c57 /tests/Cargo.toml | |
parent | c56f2e0fc04f12d3a69c1892d8866323995f3be4 (diff) |
chore(test): use file_test_runner for spec tests (#23348)
Extracted out this code to https://github.com/denoland/file_test_runner
and added parallelism. This makes these tests run 6 seconds faster on my
machine and allows re-using this code in other crates like deno_graph,
deno_doc, etc (ex. https://github.com/denoland/deno_graph/pull/437).
Diffstat (limited to 'tests/Cargo.toml')
-rw-r--r-- | tests/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 1c2d8de4b..b0f9ff0af 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -43,6 +43,7 @@ deno_lockfile.workspace = true deno_terminal.workspace = true deno_tls.workspace = true fastwebsockets = { workspace = true, features = ["upgrade", "unstable-split"] } +file_test_runner = "0.2.0" flaky_test = "=0.1.0" http.workspace = true http-body-util.workspace = true |