playwright/tests/components/ct-solid/src/tests.spec.tsx
2022-08-25 08:40:14 -07:00

10 lines
326 B
TypeScript

import { test, expect } from '@playwright/experimental-ct-solid'
import Button from './components/Button';
test.use({ viewport: { width: 500, height: 500 } });
test('props should work', async ({ mount }) => {
const component = await mount(<Button title="Submit" />);
await expect(component).toContainText('Submit');
});