1
0
Fork 0

Add tests/nginx-proxy.nixc.us.test.ts

This commit is contained in:
colin 2023-11-21 19:05:54 +00:00
parent 4ba9f6c7d5
commit aea8f34af2
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import { test, expect } from '@playwright/test';
test('test', async ({ page }) => {
await page.goto('https://nginx-proxy.nixc.us/secret-health-path');
await page.getByText('Healthy').click();
});