10 lines
326 B
TypeScript
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');
|
|
});
|