Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskerr committed Dec 8, 2023
1 parent a202064 commit 5aeb461
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/zui/src/js/state/ConfigPropValues/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ const data2 = "test2"

let select, dispatch, store: Store
beforeEach(async () => {
// store = await initTestStore()
// dispatch = store.dispatch
// select = (f) => f(store.getState())
store = await initTestStore()
dispatch = store.dispatch
select = (f) => f(store.getState())
})

afterEach(async () => {
await new Promise((r) => setTimeout(r))
})

test.only("Create or Update (Upsert)", async () => {
test("Create or Update (Upsert)", async () => {
store = await initTestStore()
dispatch = store.dispatch
select = (f) => f(store.getState())
Expand Down

0 comments on commit 5aeb461

Please sign in to comment.