12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import { mergeTests } from '@playwright/test';
|
|
import { test as baseTest } from '../fixtures/baseFixture';
|
|
import { test as loginTest } from '../fixtures/loginFixture';
|
|
|
|
export const test = mergeTests(
|
|
baseTest,
|
|
loginTest
|
|
);
|
|
|
|
export { expect } from '@playwright/test';
|
|
|