File size: 259 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('David KRK - Techno DJ & Producer'); // Titre mis à jour
});