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 a7beba1 commit 41a621dCopy full SHA for 41a621d
test/_setup.ts
@@ -1,12 +1,12 @@
1
-// import { automd } from "../src";
+import { automd } from "../src";
2
3
-// console.log("Starting automd with watcher on repo...");
4
-// const { unwatch } = await automd({
5
-// watch: true,
6
-// });
+console.log("Starting automd with watcher on repo...");
+const { unwatch } = await automd({
+ watch: true,
+});
7
8
export const seup = async () => {};
9
10
export const teardown = async () => {
11
- // await unwatch?.();
+ await unwatch?.();
12
};
vitest.config.ts
@@ -2,6 +2,6 @@ import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
- globalSetup: "./test/_setup.ts",
+ // globalSetup: "./test/_setup.ts",
},
});
0 commit comments