File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 8
8
"types" : " ./types/index.d.ts" ,
9
9
"default" : " ./src/index.js"
10
10
},
11
- "./pure" : {
12
- "types" : " ./types/index.d.ts" ,
13
- "default" : " ./src/pure.js"
14
- },
15
11
"./svelte5" : {
16
12
"types" : " ./types/index.d.ts" ,
17
13
"default" : " ./src/svelte5-index.js"
Original file line number Diff line number Diff line change @@ -4,8 +4,7 @@ import { act, cleanup } from './pure.js'
4
4
// If we're running in a test runner that supports afterEach
5
5
// then we'll automatically run cleanup afterEach test
6
6
// this ensures that tests run in isolation from each other
7
- // if you don't like this then either import the `pure` module
8
- // or set the STL_SKIP_AUTO_CLEANUP env variable to 'true'.
7
+ // if you don't like this then set the STL_SKIP_AUTO_CLEANUP env variable.
9
8
if ( typeof afterEach === 'function' && ! process . env . STL_SKIP_AUTO_CLEANUP ) {
10
9
afterEach ( async ( ) => {
11
10
await act ( )
You can’t perform that action at this time.
0 commit comments