Skip to content

Commit 53d6c84

Browse files
committed
test: titles
1 parent 07b9d40 commit 53d6c84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/pinia/__tests__/subscriptions.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ describe('Subscriptions', () => {
354354
expect(spy2).toHaveBeenCalledTimes(2)
355355
})
356356

357-
it('debugger events should not be array when subscription is not trigger by patch', () => {
357+
it('debuggerEvents is not be an array when subscription is not trigger by patch', () => {
358358
const store = useStore()
359359
store.$subscribe(
360360
({ type, events }) => {
@@ -368,7 +368,7 @@ describe('Subscriptions', () => {
368368
store.user = 'a'
369369
})
370370

371-
it('should trigger subscription when mutate state synchronously after patch', async () => {
371+
it('triggers subscription when state is synchronously mutated after patch', async () => {
372372
const store = useStore()
373373
const spy1 = vi.fn()
374374
const spy2 = vi.fn()

0 commit comments

Comments
 (0)