mirror of
https://github.com/appium/appium.git
synced 2026-01-12 05:10:23 -06:00
12 lines
189 B
JavaScript
12 lines
189 B
JavaScript
// @ts-check
|
|
|
|
'use strict';
|
|
|
|
module.exports = {
|
|
require: ['ts-node/register'],
|
|
// forbids use of .only() in CI
|
|
forbidOnly: Boolean(process.env.CI),
|
|
color: true,
|
|
timeout: '5s',
|
|
};
|