summaryrefslogtreecommitdiff
path: root/cli/js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js')
-rw-r--r--cli/js/tests/README.md2
-rw-r--r--cli/js/tests/chown_test.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/tests/README.md b/cli/js/tests/README.md
index e48b03012..abc9212e4 100644
--- a/cli/js/tests/README.md
+++ b/cli/js/tests/README.md
@@ -41,7 +41,7 @@ ways:
`unit_test_runner.ts` is the main script used to run unit tests.
-Runner discoveres required permissions combinations by loading
+Runner discovers required permissions combinations by loading
`cli/js/tests/unit_tests.ts` and going through all registered instances of
`unitTest`.
diff --git a/cli/js/tests/chown_test.ts b/cli/js/tests/chown_test.ts
index eb3a75ba7..724ea5a21 100644
--- a/cli/js/tests/chown_test.ts
+++ b/cli/js/tests/chown_test.ts
@@ -108,7 +108,7 @@ if (Deno.build.os !== "windows") {
async function chownSyncSucceed(): Promise<void> {
// TODO: when a file's owner is actually being changed,
// chown only succeeds if run under priviledged user (root)
- // The test script has no such priviledge, so need to find a better way to test this case
+ // The test script has no such privilege, so need to find a better way to test this case
const { uid, gid } = await getUidAndGid();
const enc = new TextEncoder();