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 97f3f83 commit 802f854Copy full SHA for 802f854
2 files changed
package.json
@@ -17,7 +17,7 @@
17
"generate:json-schemas": "pnpm --filter \"@mojis/json-schemas\" run write-schemas",
18
"lint": "turbo run lint",
19
"test": "vitest run",
20
- "test:watch": "vitest",
+ "test:watch": "ATTEST_skipTypes=1 vitest",
21
"test:ui": "vitest --ui",
22
"typecheck": "turbo run typecheck"
23
},
test/global-setup/attest.ts
@@ -1,3 +1,5 @@
1
-import { setup } from "@ark/attest"
+import { setup, teardown} from "@ark/attest"
2
3
-export default () => setup({})
+export default () => setup({
4
+ updateSnapshots: true
5
+})
0 commit comments