20c19d15f4
Modern.js SSR intercepts all routes before any Express middleware, so the API proxy runs as a separate Express server on port 8080. Modern.js runs on 8081. The proxy uses curl subprocesses which go through the system HTTPS proxy (GOST) with a proper TLS fingerprint that the Aeroflot WAF accepts. Usage: node scripts/dev-server.mjs (replaces pnpm dev for full-stack) Also: remove stray e2e-angular test directory, fix env default to same-origin /api.
16 lines
508 B
TypeScript
16 lines
508 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
import { todayStr } from '../../src/lib/date-utils';
|
|
|
|
const today = todayStr();
|
|
const dateParam = today.replace(/-/g, '');
|
|
|
|
test.describe('Landing page visual regression', () => {
|
|
test('matches landing page screenshot', async ({ page }) => {
|
|
await page.goto(`/ru-ru/onlineboard/departure/MOW-${dateParam}`);
|
|
await page.waitForLoadState('networkidle');
|
|
await expect(page).toHaveScreenshot('landing.png', {
|
|
fullPage: true,
|
|
});
|
|
});
|
|
});
|