Work on CORS testing and fixes. Chrome and pfSense with the DNS resolution found a problem. Should be fixed now.

This commit is contained in:
Scott Idem
2026-02-23 18:18:58 -05:00
parent 30e44a0af1
commit e57bbca33e
6 changed files with 128 additions and 8 deletions

View File

@@ -2,6 +2,7 @@ import { test, expect } from '@playwright/test';
test('homepage has title and link', async ({ page }) => {
await page.goto('http://scott.localhost:5173/');
// await page.goto('https://dev-demo.oneskyit.com/');
// Expect a title "to contain" a substring.
await expect(page).toHaveTitle(/SvelteKit/);
@@ -9,6 +10,7 @@ test('homepage has title and link', async ({ page }) => {
test('get started link', async ({ page }) => {
await page.goto('http://scott.localhost:5173/');
// await page.goto('https://dev-demo.oneskyit.com/');
// Click the get started link.
await page.getByRole('link', { name: 'Docs' }).click();