We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b456ffd commit 7d12048Copy full SHA for 7d12048
src/index.spec.ts
@@ -7,7 +7,7 @@ import {
7
describe,
8
expect,
9
it,
10
- SpyInstance,
+ type MockInstance,
11
vi,
12
} from "vitest";
13
import { OutputOptions, rollup } from "rollup";
@@ -19,7 +19,7 @@ const cwd = join(__dirname, "__fixtures__/");
19
const outputDir = join(__dirname, "../output");
20
21
describe("rollup-plugin-conditional-exec", () => {
22
- let mockExec: SpyInstance;
+ let mockExec: MockInstance;
23
24
function sleep(ms: number): Promise<void> {
25
return new Promise<void>((resolve) => setTimeout(resolve, ms));
0 commit comments