Skip to content

Commit

Permalink
chore: remove "only" keyword on test
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartins90 committed Oct 18, 2022
1 parent da613dd commit fbfc830
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/pinia/__tests__/store.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ describe('Store', () => {

it('can create an empty state if no state option is provided', () => {
const store = defineStore({ id: 'some' })()

expect(store.$state).toEqual({})
})

Expand Down Expand Up @@ -380,7 +380,7 @@ describe('Store', () => {
).toHaveBeenWarnedTimes(1)
})

it.only('warns when creating store with existing id', async () => {
it('warns when creating store with existing id', async () => {
const storeId = 'testStoreID';
const useFirstStore = defineStore(storeId, {});
const useSecondStore = defineStore(storeId, {});
Expand Down

0 comments on commit fbfc830

Please sign in to comment.