29 lines
625 B
TypeScript
29 lines
625 B
TypeScript
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public License,
|
|
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
|
|
* obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
import type { PlaywrightTestConfig } from '@playwright/test';
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
webServer: {
|
|
command: 'npm run build && npm run preview',
|
|
port: 4173,
|
|
},
|
|
expect: {
|
|
timeout: 2.5 * 1000,
|
|
},
|
|
testDir: 'tests',
|
|
testMatch: /(.+\.)?(test|spec)\.[jt]s/,
|
|
timeout: 5 * 1000,
|
|
use: {
|
|
viewport: {
|
|
height: 900,
|
|
width: 1600,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|