From 9eaf4055b208c982a910dfcecce1b82481fa5bd9 Mon Sep 17 00:00:00 2001 From: TorunW Date: Fri, 20 Mar 2026 12:20:46 +0100 Subject: [PATCH] updated test url --- tests/example.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/example.spec.ts b/tests/example.spec.ts index 127cad7..616eb16 100644 --- a/tests/example.spec.ts +++ b/tests/example.spec.ts @@ -4,7 +4,7 @@ import { test } from './base-test'; test('Verify that the board is a 3x3 grid', async ({ page, board }) => { const { tictacBoard } = board; - await page.goto('http://localhost:3000/'); + await page.goto('https://tic-tac-toe-tau-lyart-50.vercel.app/'); //expect 3 rows in grid const cellRows = tictacBoard.getByRole('row'); await expect(cellRows).toHaveCount(3);