From f59a052d981d87aa5b0d4e48c250fb30a6ebaf79 Mon Sep 17 00:00:00 2001 From: Michael Cousins Date: Tue, 2 Apr 2024 14:02:41 -0400 Subject: [PATCH] fix(svelte5): ensure proper `act` used in cleanup --- src/svelte5-index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/svelte5-index.js b/src/svelte5-index.js index 86ff742..ab49641 100644 --- a/src/svelte5-index.js +++ b/src/svelte5-index.js @@ -1,5 +1,6 @@ /* eslint-disable import/export */ -import { act, cleanup } from './svelte5.js' +import { act } from './pure.js' +import { cleanup } from './svelte5.js' // If we're running in a test runner that supports afterEach // then we'll automatically run cleanup afterEach test