Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add debugStore testUtil #2941

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions tests/testUtils.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { createStore } from 'jotai'

type Store = ReturnType<typeof createStore>
type GetAtomState = Parameters<Parameters<Store['unstable_derive']>[0]>[0]
type DebugStore = Store & { getAtomState: GetAtomState }

export function createDebugStore() {
let getAtomState: GetAtomState
const store = createStore().unstable_derive((...storeArgs) => {
;[getAtomState] = storeArgs
const [, setAtomState] = storeArgs
storeArgs[1] = (atom, atomState) => {
return setAtomState(
atom,
Object.assign(atomState, { label: atom.debugLabel }),
)
}
return storeArgs
})
if (getAtomState! === undefined) {
throw new Error('failed to create debug store')
}
return Object.assign(store, { getAtomState }) as DebugStore
}
Loading