File size: 238 Bytes
6140987
 
 
 
 
 
 
1
2
3
4
5
6
7
import { test, expect } from '@playwright/test';

test('hello world test', async ({ page }) => {
    await page.goto('http://localhost:3000');
    const title = await page.title();
    expect(title).toBe('Titre de votre application');
});