Skip to content

Commit 83ced42

Browse files
committed
fixup: remove pure tests
1 parent 06e3faf commit 83ced42

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/__tests__/auto-cleanup.test.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ import { IS_SVELTE_5 } from './utils.js'
55
const importSvelteTestingLibrary = async () =>
66
IS_SVELTE_5 ? import('../svelte5-index.js') : import('../index.js')
77

8-
const importSvelteTestingLibraryPure = async () =>
9-
IS_SVELTE_5 ? import('../svelte5.js') : import('../pure.js')
10-
118
const globalAfterEach = vi.fn()
129

1310
describe('auto-cleanup', () => {
@@ -42,10 +39,4 @@ describe('auto-cleanup', () => {
4239

4340
expect(globalAfterEach).toHaveBeenCalledTimes(0)
4441
})
45-
46-
test('does not call afterEach if you import from `pure`', async () => {
47-
await importSvelteTestingLibraryPure()
48-
49-
expect(globalAfterEach).toHaveBeenCalledTimes(0)
50-
})
5142
})

0 commit comments

Comments
 (0)