Skip to main content
Version: 1.x

Variable: coreTest

const coreTest: TestType<PlaywrightTestArgs & PlaywrightTestOptions & TestFixtures, PlaywrightWorkerArgs & PlaywrightWorkerOptions & WorkerFixtures>

Defined in: src/fixtures/core-fixtures.ts:162

Core Playwright test object with worker-scoped fixtures.

Remarks

Extends @playwright/test base test with Praman worker fixtures. Use this as the base for further fixture composition.

Example

import { coreTest } from '#fixtures/core-fixtures.js';

coreTest('has valid config', async ({ pramanConfig }) => {
expect(pramanConfig.logLevel).toBe('info');
});