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