2022-11-17 20:00:54 +03:00
|
|
|
/** @type {import('@playwright/test').PlaywrightTestConfig} */
|
|
|
|
const config = {
|
2022-11-22 17:12:27 +03:00
|
|
|
timeout: 20 * 1000,
|
|
|
|
workers: 1,
|
2022-11-17 20:00:54 +03:00
|
|
|
use: {
|
2022-11-22 17:12:27 +03:00
|
|
|
// Use a single browser since we can't run multiple instances of Ghost simultaneously
|
|
|
|
// and we can't run tests against a standalone server if we also want to add fixtures
|
|
|
|
browserName: 'chromium',
|
|
|
|
headless: false
|
2022-11-17 20:00:54 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = config;
|