Spaces:
Configuration error
Configuration error
https-huggingface-co-davidkrk / playwright-report /data /ca4adf35189c26b25c9d073ecdd17f6ca35d558c.md
Test info
- Name: vérifie le chargement de la page
- Location: C:\Users\LENOVO\DavidKRK.github.io\tests\hello-world.spec.ts:3:5
Error details
Error: page.goto: net::ERR_CONNECTION_REFUSED at http://localhost:3000/
Call log:
- navigating to "http://localhost:3000/", waiting until "load"
at C:\Users\LENOVO\DavidKRK.github.io\tests\hello-world.spec.ts:4:16
Test source
1 | import { test, expect } from '@playwright/test';
2 |
3 | test('vérifie le chargement de la page', async ({ page }) => {
> 4 | await page.goto('http://localhost:3000');
| ^ Error: page.goto: net::ERR_CONNECTION_REFUSED at http://localhost:3000/
5 | const title = await page.title();
6 | expect(title).toBe('Titre de votre application');
7 | });