Skip to content

Commit

Permalink
test: adapt to lint
Browse files Browse the repository at this point in the history
  • Loading branch information
EdJoPaTo committed Mar 30, 2024
1 parent 215421f commit eb331cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/html.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { strictEqual } from "node:assert";
import { test } from "node:test";
import * as format from "./html.ts";
import { Formatter } from "./types.ts";
import type { Formatter } from "./types.ts";

format satisfies Formatter;

Expand Down
2 changes: 1 addition & 1 deletion source/markdown.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { strictEqual, throws } from "node:assert";
import { test } from "node:test";
import * as format from "./markdown.ts";
import { Formatter } from "./types.ts";
import type { Formatter } from "./types.ts";

format satisfies Formatter;

Expand Down
2 changes: 1 addition & 1 deletion source/markdownv2.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { strictEqual } from "node:assert";
import { test } from "node:test";
import * as format from "./markdownv2.ts";
import { Formatter } from "./types.ts";
import type { Formatter } from "./types.ts";

format satisfies Formatter;

Expand Down

0 comments on commit eb331cb

Please sign in to comment.