diff --git a/tests/features/transition.spec.ts b/tests/features/transition.spec.ts index 0779f6880..3056cc76c 100644 --- a/tests/features/transition.spec.ts +++ b/tests/features/transition.spec.ts @@ -6,5 +6,5 @@ test('works with transitions', async () => { expect(wrapper.find('#message').exists()).toBe(false) await wrapper.find('button').trigger('click') - expect(wrapper.find('#message')).toBeTruthy() + expect(wrapper.find('#message').exists()).toBe(true) })