mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
Fixed non-standard prefix on importing (denoland/deno_std#216)
Original: f65fda8336
This commit is contained in:
parent
d63a2e0224
commit
a4383984d1
4 changed files with 27 additions and 27 deletions
|
@ -1,5 +1,5 @@
|
|||
// https://deno.land/x/benching/mod.ts
|
||||
import { BenchmarkTimer, runBenchmarks, bench } from "mod.ts";
|
||||
import { BenchmarkTimer, runBenchmarks, bench } from "./mod.ts";
|
||||
|
||||
// Simple
|
||||
bench(function forIncrementX1e9(b: BenchmarkTimer) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||
import { test, assertEqual, assert } from "../testing/mod.ts";
|
||||
import * as datetime from "mod.ts";
|
||||
import * as datetime from "./mod.ts";
|
||||
|
||||
test(function parseDateTime() {
|
||||
assertEqual(
|
||||
|
|
48
test.ts
48
test.ts
|
@ -1,27 +1,27 @@
|
|||
#!/usr/bin/env deno -A
|
||||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||
import "benching/test.ts";
|
||||
import "colors/test.ts";
|
||||
import "datetime/test.ts";
|
||||
import "examples/test.ts";
|
||||
import "flags/test.ts";
|
||||
import "io/bufio_test.ts";
|
||||
import "io/ioutil_test.ts";
|
||||
import "io/util_test.ts";
|
||||
import "io/writers_test.ts";
|
||||
import "io/readers_test.ts";
|
||||
import "fs/path/test.ts";
|
||||
import "fs/walk_test.ts";
|
||||
import "io/test.ts";
|
||||
import "http/server_test.ts";
|
||||
import "http/file_server_test.ts";
|
||||
import "log/test.ts";
|
||||
import "media_types/test.ts";
|
||||
import "multipart/formfile_test.ts";
|
||||
import "multipart/multipart_test.ts";
|
||||
import "prettier/main_test.ts";
|
||||
import "testing/test.ts";
|
||||
import "textproto/test.ts";
|
||||
import "ws/test.ts";
|
||||
import "./benching/test.ts";
|
||||
import "./colors/test.ts";
|
||||
import "./datetime/test.ts";
|
||||
import "./examples/test.ts";
|
||||
import "./flags/test.ts";
|
||||
import "./io/bufio_test.ts";
|
||||
import "./io/ioutil_test.ts";
|
||||
import "./io/util_test.ts";
|
||||
import "./io/writers_test.ts";
|
||||
import "./io/readers_test.ts";
|
||||
import "./fs/path/test.ts";
|
||||
import "./fs/walk_test.ts";
|
||||
import "./io/test.ts";
|
||||
import "./http/server_test.ts";
|
||||
import "./http/file_server_test.ts";
|
||||
import "./log/test.ts";
|
||||
import "./media_types/test.ts";
|
||||
import "./multipart/formfile_test.ts";
|
||||
import "./multipart/multipart_test.ts";
|
||||
import "./prettier/main_test.ts";
|
||||
import "./testing/test.ts";
|
||||
import "./textproto/test.ts";
|
||||
import "./ws/test.ts";
|
||||
|
||||
import "testing/main.ts";
|
||||
import "./testing/main.ts";
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||
import { runTests } from "mod.ts";
|
||||
import { runTests } from "./mod.ts";
|
||||
runTests();
|
||||
|
|
Loading…
Reference in a new issue