Skip to content

Commit 41a621d

Browse files
committed
chore: disable global setup for now
1 parent a7beba1 commit 41a621d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

test/_setup.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// import { automd } from "../src";
1+
import { automd } from "../src";
22

3-
// console.log("Starting automd with watcher on repo...");
4-
// const { unwatch } = await automd({
5-
// watch: true,
6-
// });
3+
console.log("Starting automd with watcher on repo...");
4+
const { unwatch } = await automd({
5+
watch: true,
6+
});
77

88
export const seup = async () => {};
99

1010
export const teardown = async () => {
11-
// await unwatch?.();
11+
await unwatch?.();
1212
};

vitest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import { defineConfig } from "vitest/config";
22

33
export default defineConfig({
44
test: {
5-
globalSetup: "./test/_setup.ts",
5+
// globalSetup: "./test/_setup.ts",
66
},
77
});

0 commit comments

Comments
 (0)