From af61dbed874863db308f3a421ad142a7f106687a Mon Sep 17 00:00:00 2001 From: Ry Dahl Date: Thu, 31 Oct 2019 22:33:27 -0400 Subject: Upgrade node_modules, change tagline, clean up root directory (#3247) * Upgrade node_modules * Simplify tagline * Move gclient_config.py out of root * Move package.json to tools * Remove yarn.lock * Remove CONTRIBUTING.md --- cli/js/files_test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/js/files_test.ts') diff --git a/cli/js/files_test.ts b/cli/js/files_test.ts index 004cb662b..2eaa3b9be 100644 --- a/cli/js/files_test.ts +++ b/cli/js/files_test.ts @@ -8,7 +8,7 @@ test(function filesStdioFileDescriptors(): void { }); testPerm({ read: true }, async function filesCopyToStdout(): Promise { - const filename = "package.json"; + const filename = "cli/tests/fixture.json"; const file = await Deno.open(filename); assert(file.rid > 2); const bytesWritten = await Deno.copy(Deno.stdout, file); @@ -81,7 +81,7 @@ testPerm({ write: false }, async function writePermFailure(): Promise { testPerm({ read: false }, async function readPermFailure(): Promise { let caughtError = false; try { - await Deno.open("package.json", "r"); + await Deno.open("cli/tests/fixture.json", "r"); } catch (e) { caughtError = true; assertEquals(e.kind, Deno.ErrorKind.PermissionDenied); -- cgit v1.2.3