20 lines
433 B
JavaScript
20 lines
433 B
JavaScript
const BASE_URL = 'http://icehrm-testing:8090/app/';
|
|
//const BASE_URL = 'http://clients.icehrmpro.test/test/';
|
|
|
|
const DEFAULT_MAX_PAGE_SIZE = 15;
|
|
const DEFAULT_STATUS = 200;
|
|
const DEFAULT_USER_PASS = 'demouserpwd';
|
|
const URL_PREFIX = 'app';
|
|
const WAIT_ON_TIME = false;
|
|
const WAIT_TIME = 500;
|
|
|
|
module.exports = {
|
|
BASE_URL,
|
|
DEFAULT_MAX_PAGE_SIZE,
|
|
DEFAULT_STATUS,
|
|
DEFAULT_USER_PASS,
|
|
URL_PREFIX,
|
|
WAIT_ON_TIME,
|
|
WAIT_TIME,
|
|
};
|