diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/node_compat/README.md | 6 | ||||
-rwxr-xr-x | tools/node_compat/setup.ts | 2 | ||||
-rw-r--r-- | tools/release/release_doc_template.md | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/tools/node_compat/README.md b/tools/node_compat/README.md index 29a7ef739..e8f4a034e 100644 --- a/tools/node_compat/README.md +++ b/tools/node_compat/README.md @@ -9,7 +9,7 @@ Node.js compat testing in Deno repository. - `//tools/node_compat/setup.ts` - This script sets up the Node.js compat tests. -- `//tools/node_comapt/versions/` +- `//tools/node_compat/versions/` - Node.js source tarballs and extracted test cases are stored here. - `//cli/tests/node_compat/config.jsonc` - This json file stores the settings about which Node.js compat test to run @@ -29,7 +29,7 @@ The above command copies the updated items from Node.js tarball to the Deno source tree. Ideally Deno should pass the Node.js compat tests without modification, but if -you need to modify it, then add that item in `ignore` perperty of +you need to modify it, then add that item in `ignore` property of `config.jsonc`. Then `setup.ts` doesn't overwrite the modified Node.js test cases anymore. @@ -41,7 +41,7 @@ If the test needs to be ignored in particular platform, then add them in Node.js compat tests are run as part of `cargo test` command. If you want to run only the Node.js compat test cases you can use the command `cargo test node_compat`. If you want to run specific tests you can use the -command `deno task test` (in `tools/node_comapt` dir). For example, if you want +command `deno task test` (in `tools/node_compat` dir). For example, if you want to run all test files which contains `buffer` in filename you can use the command: diff --git a/tools/node_compat/setup.ts b/tools/node_compat/setup.ts index 132acfe11..17c716a08 100755 --- a/tools/node_compat/setup.ts +++ b/tools/node_compat/setup.ts @@ -115,7 +115,7 @@ async function copyTests() { for await (const entry of walk(VENDORED_NODE_TEST, { skip: ignoreList })) { const fragments = entry.path.split(sep); // suite is the directory name after test/. For example, if the file is - // "node_comapt/node/test/fixtures/policy/main.mjs" + // "node_compat/node/test/fixtures/policy/main.mjs" // then suite is "fixtures/policy" const suite = fragments.slice(fragments.indexOf("node_compat") + 3, -1) .join("/"); diff --git a/tools/release/release_doc_template.md b/tools/release/release_doc_template.md index 5579abb48..7e6f93037 100644 --- a/tools/release/release_doc_template.md +++ b/tools/release/release_doc_template.md @@ -188,7 +188,7 @@ script generates the symbols based on the latest tags. <details> <summary>Failure Steps</summary> - 1. Clone `deno/apliland_scripts`. + 1. Clone `deno/apiland_scripts`. 2. Execute `deno task release`. </details> |