Skip to content

Commit 70ddb81

Browse files
committed
fix
1 parent 5929699 commit 70ddb81

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/@textstat/kernel/test/TextstatKernel-test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as assert from "assert";
2-
import { TextstatKernel } from "../src/TextstatKernel";
3-
import * as rule from "./rule/textstat-rule-example";
2+
import { TextstatKernel } from "../src/TextstatKernel.js";
3+
import * as rule from "./rule/textstat-rule-example.js";
44

55
import generated from "@textlint/textlint-plugin-markdown";
66

packages/@textstat/textstat-tester/src/textstat-tester.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ export function runTest(
3131
const sharedDepsOwn =
3232
typeof sharedDeps === "object"
3333
? {
34-
...defaultSharedDeps,
35-
...sharedDeps
36-
}
34+
...defaultSharedDeps,
35+
...sharedDeps
36+
}
3737
: defaultSharedDeps;
3838
const actualResult = await textstat.report(actualContent, {
3939
filePath: actualFilePath,

0 commit comments

Comments
 (0)