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 d5c8c70 commit 8d94549Copy full SHA for 8d94549
test/unit/transform.test.ts
@@ -18,14 +18,15 @@ vi.mock('ohash', async (og) => {
18
}
19
})
20
21
-vi.mock('ofetch', async (og) => {
22
- const mod = (await og<typeof import('ofetch')>())
23
- const mock = vi.fn(mod.$fetch)
24
- return {
25
- ...mod,
26
- $fetch: mock,
27
- }
28
-})
+// TODO re-enable
+// vi.mock('ofetch', async (og) => {
+// const mod = (await og<typeof import('ofetch')>())
+// const mock = vi.fn(mod.$fetch)
+// return {
+// ...mod,
+// $fetch: mock,
+// }
29
+// })
30
31
vi.mock('ufo', async (og) => {
32
const mod = (await og<typeof import('ufo')>())
0 commit comments