File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import type {
1414 StoresInputValues ,
1515 SubscribableStore ,
1616 SubscriberObject ,
17- } from './index' ;
17+ } from '../src /index' ;
1818import {
1919 DerivedStore ,
2020 Store ,
@@ -29,11 +29,11 @@ import {
2929 symbolObservable ,
3030 untrack ,
3131 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' ;
3737
3838const expectCorrectlyCleanedUp = < T > ( store : StoreInput < T > ) => {
3939 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`;
66export default defineConfig ( {
77 test : {
88 setupFiles : [ 'test.ts' ] ,
9- include : [ 'src /**/*.spec.ts' ] ,
9+ include : [ 'test /**/*.spec.ts' ] ,
1010 environment : 'happy-dom' ,
1111 coverage : {
1212 provider : 'v8' ,
You can’t perform that action at this time.
0 commit comments