@v4fire/client
Version:
V4Fire client core library
26 lines (17 loc) • 549 B
text/typescript
/*!
* V4Fire Client Core
* https://github.com/V4Fire/Client
*
* Released under the MIT license
* https://github.com/V4Fire/Client/blob/master/LICENSE
*/
import type { PlaywrightTestConfig } from '@playwright/test';
import superConfig from 'tests/config/super';
const config: PlaywrightTestConfig = {
...superConfig,
name: 'unit',
testMatch: ['src/**/test/unit/**/*.ts'],
reporter: Object.isTruly(process.env.GITHUB_ACTIONS) ? 'github' : undefined,
globalSetup: require.resolve('tests/config/unit/setup')
};
export default config;