dumps optimized
This commit is contained in:
@@ -22,7 +22,7 @@ describe('E2E: Step 6 Missing Case (RED Phase)', () => {
|
||||
headless: true,
|
||||
timeout: 5000,
|
||||
mode: 'mock',
|
||||
baseUrl: 'file://' + process.cwd() + '/resources/mock-fixtures',
|
||||
baseUrl: 'file://' + process.cwd() + '/html-dumps',
|
||||
}, logger);
|
||||
|
||||
await adapter.connect();
|
||||
@@ -36,7 +36,7 @@ describe('E2E: Step 6 Missing Case (RED Phase)', () => {
|
||||
|
||||
it('should successfully execute step 6 (SET_ADMINS)', async () => {
|
||||
// Given: Navigate to step 6 fixture (Set Admins page)
|
||||
const navResult = await adapter.navigateToPage(`file://${process.cwd()}/resources/mock-fixtures/step-06-set-admins.html`);
|
||||
const navResult = await adapter.navigateToPage(`file://${process.cwd()}/html-dumps/step-06-set-admins.html`);
|
||||
expect(navResult.success).toBe(true);
|
||||
|
||||
// When: Execute step 6 (should navigate to Time Limits)
|
||||
|
||||
@@ -15,7 +15,7 @@ import path from 'path';
|
||||
*/
|
||||
describe('Steps 7-9 Alignment Fix (E2E)', () => {
|
||||
let adapter: PlaywrightAutomationAdapter;
|
||||
const fixtureBaseUrl = `file://${path.resolve(process.cwd(), 'resources/mock-fixtures')}`;
|
||||
const fixtureBaseUrl = `file://${path.resolve(process.cwd(), 'html-dumps')}`;
|
||||
|
||||
beforeAll(async () => {
|
||||
adapter = new PlaywrightAutomationAdapter({
|
||||
|
||||
@@ -20,7 +20,7 @@ import { StepId } from '../../packages/domain/value-objects/StepId';
|
||||
*/
|
||||
describe('E2E: Step 8→9→11 State Synchronization', () => {
|
||||
let adapter: PlaywrightAutomationAdapter;
|
||||
const fixtureBaseUrl = `file://${path.resolve(process.cwd(), 'resources/mock-fixtures')}`;
|
||||
const fixtureBaseUrl = `file://${path.resolve(process.cwd(), 'html-dumps')}`;
|
||||
|
||||
beforeAll(async () => {
|
||||
const logger = new NoOpLogAdapter();
|
||||
|
||||
Reference in New Issue
Block a user