Fix test
This commit is contained in:
parent
2322e430c4
commit
bc0b42bda6
|
@ -6,7 +6,10 @@ import { derived } from "svelte/store"
|
|||
import { integrations } from "stores/builder/integrations"
|
||||
|
||||
vi.mock("svelte/store", () => ({
|
||||
derived: vi.fn(() => {}),
|
||||
derived: vi.fn(),
|
||||
writable: vi.fn(() => ({
|
||||
subscribe: vi.fn(),
|
||||
})),
|
||||
}))
|
||||
|
||||
vi.mock("stores/builder/integrations", () => ({ integrations: vi.fn() }))
|
||||
|
|
Loading…
Reference in New Issue