mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-07 08:06:12 +01:00
- Added Playwright configuration for automated and visual E2E tests - Updated Next.js configuration to accept localhost:3003 for testing - Included Playwright as a dev dependency 💘 Generated with Crush Co-Authored-By: Crush <crush@charm.land>
7 lines
291 B
TypeScript
7 lines
291 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test('basic test', async ({ page }) => {
|
|
await page.goto('http://localhost:3002'); // replace with your local dev URL
|
|
await expect(page).toHaveTitle(/Spliit · Share Expenses with Friends & Family/); // replace with your app's title
|
|
});
|