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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user