8 new spec files covering sections previously only smoke-tested:
- ai-endpoints-contract.spec.js — hits 8 real AI endpoints via request
context and fails if the response leaks TypeError / ReferenceError /
'Cannot read properties of undefined' / 'is not defined' / 'is not a
function'. This is the class of bug that shipped the PE-narrative
regression to prod because every page-level mock prevented the real
handler from running.
- encounter-workflow.spec.js — generate HPI, refine, clear transcript.
- encounter-save-load.spec.js — save draft, load popover, repopulate.
- wellvisit-workflow.spec.js — byvisit, milestones, SSHADESS (12+
reveal), visit note.
- vaxschedule-content.spec.js — schedule + catch-up panels populate
beyond "Loading".
- chart-review-workflow.spec.js — generate + load popover.
- learning-tab.spec.js — search filter, category pills, feed.
- settings-faq-dictation.spec.js — voice/password/2FA/Nextcloud
sections, FAQ expand/collapse, dictation generate flow.
Baseline fixes:
- Added CORS_ORIGINS + API_RATE_LIMIT_MAX env overrides so the e2e
container accepts the browser's Origin header and can absorb the
full suite's API traffic without tripping the 200/min guard.
- Server's /api/ rate limit is now configurable via
API_RATE_LIMIT_MAX (default stays 200).
- extensions-crud: replaced native page.on('dialog') listeners with
#confirm-modal-ok clicks (we moved off native confirm()).
- pe-guide-smoke + extensions-crud: mobile viewport opens the hamburger
before clicking sidebar tabs.
- fixtures.js: /api/refine mock uses 'refined' (real API shape), not
'content'. /api/chart-review replaced with /api/generate-chart-review.
Suite: 230 passed / 0 failed in 4m36s.
52 lines
2.1 KiB
JavaScript
52 lines
2.1 KiB
JavaScript
// ============================================================
|
|
// VAX SCHEDULE + CATCH-UP — content renders into the stub panels.
|
|
// These tabs have no inputs; they just display the AAP/ACIP tables.
|
|
// Verify: real content (not just "Loading") + at least a few
|
|
// recognisable vaccine abbreviations show up.
|
|
// ============================================================
|
|
|
|
const { test, expect, E2E_BASE } = require('../fixtures');
|
|
|
|
async function openTab(page, name) {
|
|
await page.goto(E2E_BASE + '/');
|
|
await page.waitForSelector('button.tab-btn', { timeout: 15000 });
|
|
const vp = page.viewportSize();
|
|
if (vp && vp.width <= 768) {
|
|
await page.click('#btn-menu-toggle').catch(() => {});
|
|
}
|
|
await page.click(`button.tab-btn[data-tab="${name}"]`);
|
|
await page.waitForFunction((t) => {
|
|
const el = document.getElementById(t + '-tab');
|
|
return el && el.classList.contains('active') && el.innerHTML.trim().length > 100;
|
|
}, name, { timeout: 15000 });
|
|
}
|
|
|
|
test.describe('Vaccine schedules — content loaded', () => {
|
|
|
|
test('vaxschedule: panel populates beyond the loading placeholder', async ({ authedPage: _, page }) => {
|
|
await openTab(page, 'vaxschedule');
|
|
await expect.poll(async () => {
|
|
const text = await page.locator('#wv-panel-schedule').innerText();
|
|
return text;
|
|
}, { timeout: 10000 }).not.toMatch(/^Loading schedule/i);
|
|
|
|
// Must mention at least a couple of the core childhood vaccines
|
|
const text = await page.locator('#wv-panel-schedule').innerText();
|
|
expect(text).toMatch(/HepB|Hep B/i);
|
|
expect(text).toMatch(/MMR/i);
|
|
expect(text).toMatch(/DTaP|Tdap/i);
|
|
});
|
|
|
|
test('catchup: panel populates with the catch-up schedule', async ({ authedPage: _, page }) => {
|
|
await openTab(page, 'catchup');
|
|
await expect.poll(async () => {
|
|
const text = await page.locator('#wv-panel-catchup').innerText();
|
|
return text;
|
|
}, { timeout: 10000 }).not.toMatch(/^Loading catch-up/i);
|
|
|
|
const text = await page.locator('#wv-panel-catchup').innerText();
|
|
expect(text.trim().length).toBeGreaterThan(200);
|
|
// Should mention interval guidance in some form
|
|
expect(text).toMatch(/interval|month|week/i);
|
|
});
|
|
});
|