https-huggingface-co-davidkrk / playwright-report /data /3d6a3d1a8bb6714f575631aa577f179974dc2f76.md
DavidKRK's picture
Upload folder using huggingface_hub
6140987 verified

Test info

  • Name: hello world test
  • Location: C:\Users\LENOVO\DavidKRK.github.io\tests\example.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\example.spec.ts:4:16

Test source

  1 | import { test, expect } from '@playwright/test';
  2 |
  3 | test('hello world test', 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 | });