mirror of
https://github.com/plankanban/planka.git
synced 2025-12-22 01:11:29 +03:00
test: Rename config file to match case
This commit is contained in:
14
client/tests/acceptance/Config.js
Normal file
14
client/tests/acceptance/Config.js
Normal file
@@ -0,0 +1,14 @@
|
||||
const BASE_URL = process.env.BASE_URL || 'http://localhost:1337';
|
||||
|
||||
const TIMEOUT = parseInt(process.env.TIMEOUT, 10) || 6000;
|
||||
|
||||
const PLAYWRIGHT = {
|
||||
headless: process.env.PLAYWRIGHT_HEADLESS !== 'false',
|
||||
slowMo: parseInt(process.env.PLAYWRIGHT_SLOW_MO, 10) || 1000,
|
||||
};
|
||||
|
||||
export default {
|
||||
BASE_URL,
|
||||
TIMEOUT,
|
||||
PLAYWRIGHT,
|
||||
};
|
||||
Reference in New Issue
Block a user