Pavel Feldman 1bbefce9af
Revert "chore: use plugins for component testing again (#13977)" (#13998)
This reverts commit a2f9f15e3e2419d24b8b1deb87d304c363f93435.
2022-05-06 12:02:07 -07:00

21 lines
508 B
TypeScript

import { test, expect } from '@playwright/experimental-ct-vue'
import Counter from './Counter.vue'
test.use({ viewport: { width: 500, height: 500 } })
test('should work', async ({ mount }) => {
const values = []
const component = await mount(Counter, {
on: {
changed: counter => values.push(counter)
}
})
await component.click()
expect(values).toEqual([1])
await component.click()
expect(values).toEqual([1, 2])
await component.click()
expect(values).toEqual([1, 2, 3])
})