DavidKRK's picture
Upload folder using huggingface_hub
6140987 verified
raw
history blame contribute delete
238 Bytes
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');
});