UNPKG

@v4fire/client

Version:

V4Fire client core library

25 lines (16 loc) 480 B
/*! * 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: 'project', testMatch: ['src/**/test/project/**/*.ts'], globalSetup: require.resolve('tests/config/project/setup') }; export default config;