File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import type {
14
14
StoresInputValues ,
15
15
SubscribableStore ,
16
16
SubscriberObject ,
17
- } from './index' ;
17
+ } from '../src /index' ;
18
18
import {
19
19
DerivedStore ,
20
20
Store ,
@@ -29,11 +29,11 @@ import {
29
29
symbolObservable ,
30
30
untrack ,
31
31
writable ,
32
- } from './index' ;
33
- import { rawStoreSymbol } from './internal/exposeRawStores' ;
34
- import { RawStoreFlags } from './internal/store' ;
35
- import { flushUnused } from './internal/storeTrackingUsage' ;
36
- import type { RawStoreWritable } from './internal/storeWritable' ;
32
+ } from '../src /index' ;
33
+ import { rawStoreSymbol } from '../src /internal/exposeRawStores' ;
34
+ import { RawStoreFlags } from '../src /internal/store' ;
35
+ import { flushUnused } from '../src /internal/storeTrackingUsage' ;
36
+ import type { RawStoreWritable } from '../src /internal/storeWritable' ;
37
37
38
38
const expectCorrectlyCleanedUp = < T > ( store : StoreInput < T > ) => {
39
39
const rawStore = ( store as any ) [ rawStoreSymbol ] as RawStoreWritable < T > ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ process.env.NODE_OPTIONS = `${process.env.NODE_OPTIONS ?? ''} --expose-gc`;
6
6
export default defineConfig ( {
7
7
test : {
8
8
setupFiles : [ 'test.ts' ] ,
9
- include : [ 'src /**/*.spec.ts' ] ,
9
+ include : [ 'test /**/*.spec.ts' ] ,
10
10
environment : 'happy-dom' ,
11
11
coverage : {
12
12
provider : 'v8' ,
You can’t perform that action at this time.
0 commit comments