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
kekskurse 7b1f439fb3
Some checks failed
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/playwright Pipeline failed
fix: playwrite url
2025-03-12 22:20:42 +01:00

12 lines
339 B
JavaScript

// @ts-check
import { test, expect } from '@playwright/test';
test('check ping route', async ({ page }) => {
await page.goto('http://miniauth: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();
});