This repository has been archived on 2025-10-08. You can view files and clone it, but cannot push or open issues or pull requests.
miniauthold/playwright/tests/example.spec.js
2025-03-12 15:28:25 +01:00

12 lines
340 B
JavaScript

// @ts-check
import { test, expect } from '@playwright/test';
test('check ping route', async ({ page }) => {
await page.goto('http://localhost:8080/ping');
await page.screenshot({ path: 'screenshot.png' });
// Expects page to have a heading with the name of Installation.
await expect(page.getByText('pong')).toBeVisible();
});