mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 04:39:10 +00:00
Move deno_std to a more convenient location. (#3057)
js/deps/https/deno.land/std -> js/std
This commit is contained in:
parent
eecb4fea26
commit
ddcad56ee9
14 changed files with 18 additions and 28 deletions
|
@ -7,11 +7,8 @@
|
|||
// tests by the special string. permW1N0 means allow-write but not allow-net.
|
||||
// See tools/unit_tests.py for more details.
|
||||
|
||||
import * as testing from "./deps/https/deno.land/std/testing/mod.ts";
|
||||
import {
|
||||
assert,
|
||||
assertEquals
|
||||
} from "./deps/https/deno.land/std/testing/asserts.ts";
|
||||
import * as testing from "../std/testing/mod.ts";
|
||||
import { assert, assertEquals } from "../std/testing/asserts.ts";
|
||||
export {
|
||||
assert,
|
||||
assertThrows,
|
||||
|
@ -21,7 +18,7 @@ export {
|
|||
assertStrictEq,
|
||||
assertStrContains,
|
||||
unreachable
|
||||
} from "./deps/https/deno.land/std/testing/asserts.ts";
|
||||
} from "../std/testing/asserts.ts";
|
||||
|
||||
interface TestPermissions {
|
||||
read?: boolean;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue