Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-05 | chore: deprecate doc itests (#25452) | Mohammad Sulaiman | |
2024-06-28 | chore: update deno_doc (#24308) | Leo Kettmeir | |
2024-04-29 | chore: migrate bench, publish, and more itests to spec tests (#23584) | David Sherret | |
2024-04-24 | chore: update deno_doc (#23544) | Leo Kettmeir | |
2024-04-11 | fix: upgrade deno_ast related crates (#23187) | David Sherret | |
Had to revert back swc due to https://github.com/swc-project/swc/issues/8840 Fixes: - https://github.com/denoland/deno_lint/pull/1262 - https://github.com/denoland/deno_doc/pull/538 - https://github.com/denoland/deno_doc/pull/537 - https://github.com/denoland/deno_graph/pull/430 - https://github.com/denoland/deno_graph/pull/425 - https://github.com/denoland/deno_graph/pull/432 | |||
2024-03-28 | chore: update deno_doc to 0.119.0 (#23103) | Leo Kettmeir | |
2024-02-12 | chore: continue tests/ re-org (#22396) | Matt Mastracci | |
Split `node_compat_tests` into its own top-level test so its stdout doesn't stomp on the remainder of the tests. | |||
2024-02-10 | chore: move cli/tests/ -> tests/ (#22369) | Matt Mastracci | |
This looks like a massive PR, but it's only a move from cli/tests -> tests, and updates of relative paths for files. This is the first step towards aggregate all of the integration test files under tests/, which will lead to a set of integration tests that can run without the CLI binary being built. While we could leave these tests under `cli`, it would require us to keep a more complex directory structure for the various test runners. In addition, we have a lot of complexity to ignore various test files in the `cli` project itself (cargo publish exclusion rules, autotests = false, etc). And finally, the `tests/` folder will eventually house the `test_ffi`, `test_napi` and other testing code, reducing the size of the root repo directory. For easier review, the extremely large and noisy "move" is in the first commit (with no changes -- just a move), while the remainder of the changes to actual files is in the second commit. |