This repository has been archived on 2025-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
playwright-demo/tests/zhb/fixture/common.js
rsgltzyd db0603dcfd
Some checks failed
Playwright Tests / test (push) Has been cancelled
init
2024-11-07 22:00:35 +08:00

8 lines
260 B
JavaScript

const { mergeTests } = require('@playwright/test');
const { test: baseTest } = require('./base');
const { test: customerTest } = require('./customerFixture');
export const test = mergeTests(baseTest, customerTest);
export { expect } from '@playwright/test';