Skip to content

Commit 83355e2

Browse files
committed
💪 Refer local test module instead
1 parent 2e040fc commit 83355e2

18 files changed

+18
-18
lines changed

denops_std/anonymous/mod_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
assertEquals,
33
assertRejects,
44
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
5+
import { test } from "../test/mod.ts";
66
import * as anonymous from "./mod.ts";
77

88
test({

denops_std/autocmd/common_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
2+
import { test } from "../test/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { define, emit, emitAll, list, remove } from "./common.ts";
55

denops_std/autocmd/group_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
2+
import { test } from "../test/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { group } from "./group.ts";
55

denops_std/batch/batch_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
assertSpyCalls,
55
spy,
66
} from "https://deno.land/std@0.167.0/testing/mock.ts";
7-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
7+
import { test } from "../test/mod.ts";
88
import { batch, BatchHelper } from "./batch.ts";
99

1010
test({

denops_std/batch/gather_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
assertEquals,
33
assertRejects,
44
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
5+
import { test } from "../test/mod.ts";
66
import { gather, GatherHelper } from "./gather.ts";
77

88
test({

denops_std/function/cursor_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
22
import { assertNumber } from "https://deno.land/x/unknownutil@v2.1.0/mod.ts";
3-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
3+
import { test } from "../test/mod.ts";
44
import * as cursor from "./cursor.ts";
55
import { assertPosition, assertScreenPos, isScreenPos } from "./types.ts";
66

denops_std/function/input_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
assertEquals,
33
assertRejects,
44
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
5+
import { test } from "../test/mod.ts";
66
import { input, inputlist, inputsecret } from "./input.ts";
77
import * as autocmd from "../autocmd/mod.ts";
88
import { execute } from "../helper/execute.ts";

denops_std/function/various_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
2+
import { test } from "../test/mod.ts";
33
import * as various from "./various.ts";
44

55
test({

denops_std/helper/batch_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
2+
import { test } from "../test/mod.ts";
33
import * as fn from "../function/mod.ts";
44
import { batch } from "./batch.ts";
55

denops_std/helper/echo_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
1+
import { test } from "../test/mod.ts";
22
import { echo } from "./echo.ts";
33

44
test({

denops_std/helper/execute_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
assertInstanceOf,
44
assertRejects,
55
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
6-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
6+
import { test } from "../test/mod.ts";
77
import { execute } from "./execute.ts";
88

99
test({

denops_std/helper/input_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
assertEquals,
33
assertRejects,
44
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
5+
import { test } from "../test/mod.ts";
66
import { input } from "./input.ts";
77
import { execute } from "./execute.ts";
88
import * as autocmd from "../autocmd/mod.ts";

denops_std/helper/load_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
assertEquals,
33
assertRejects,
44
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
5+
import { test } from "../test/mod.ts";
66
import { load } from "./load.ts";
77

88
const loadScriptUrlBase =

denops_std/mapping/mod_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
assertEquals,
44
assertRejects,
55
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
6-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
6+
import { test } from "../test/mod.ts";
77
import { Mapping, Mode } from "./types.ts";
88
import * as mapping from "./mod.ts";
99

denops_std/variable/environment_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
2+
import { test } from "../test/mod.ts";
33
import { environment } from "./environment.ts";
44

55
test({

denops_std/variable/option_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
2+
import { test } from "../test/mod.ts";
33
import { globalOptions, localOptions, options } from "./option.ts";
44

55
test({

denops_std/variable/register_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
assertEquals,
33
assertRejects,
44
} from "https://deno.land/std@0.167.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
5+
import { test } from "../test/mod.ts";
66
import { register } from "./register.ts";
77

88
test({

denops_std/variable/variable_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assertEquals } from "https://deno.land/std@0.167.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_core@v3.3.0/test/mod.ts";
2+
import { test } from "../test/mod.ts";
33
import { buffers, globals, tabpages, vim, windows } from "./variable.ts";
44

55
test({

0 commit comments

Comments
 (0)