Skip to content

Commit 7d12048

Browse files
committed
chore: fix type import
1 parent b456ffd commit 7d12048

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
describe,
88
expect,
99
it,
10-
SpyInstance,
10+
type MockInstance,
1111
vi,
1212
} from "vitest";
1313
import { OutputOptions, rollup } from "rollup";
@@ -19,7 +19,7 @@ const cwd = join(__dirname, "__fixtures__/");
1919
const outputDir = join(__dirname, "../output");
2020

2121
describe("rollup-plugin-conditional-exec", () => {
22-
let mockExec: SpyInstance;
22+
let mockExec: MockInstance;
2323

2424
function sleep(ms: number): Promise<void> {
2525
return new Promise<void>((resolve) => setTimeout(resolve, ms));

0 commit comments

Comments
 (0)