mirror of
https://github.com/appium/appium.git
synced 2026-02-11 12:29:48 -06:00
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
module.exports = {
|
|
'ios':{
|
|
'mocha-bin': 'ci/mochas/ios71-mocha',
|
|
'glob-patterns': [
|
|
'test/functional/common/**/*-specs.js',
|
|
'test/functional/ios/**/*-specs.js'
|
|
]
|
|
},
|
|
'android':{
|
|
'mocha-bin': 'ci/mochas/android-mocha',
|
|
'glob-patterns': [
|
|
'test/functional/common/**/*-specs.js',
|
|
'test/functional/android/**/*-specs.js'
|
|
]
|
|
},
|
|
'gappium':[
|
|
{
|
|
'mocha-bin': 'ci/mochas/ios71-mocha',
|
|
'glob-patterns': [
|
|
'test/functional/gappium/**/*-specs.js'
|
|
]
|
|
},
|
|
// TODO: gappium/android hangs on sauce.
|
|
// suspect: context/contexts issues on linux
|
|
// {
|
|
// 'mocha-bin': 'ci/mochas/android-mocha',
|
|
// 'glob-patterns': [
|
|
// 'test/functional/gappium/**/*-specs.js'
|
|
// ]
|
|
// },
|
|
// TODO: gappium/selendroid hangs on sauce.
|
|
// suspect: context/contexts issues on linux
|
|
// {
|
|
// 'mocha-bin': 'ci/mochas/selendroid-mocha',
|
|
// 'glob-patterns': [
|
|
// 'test/functional/gappium/**/*-specs.js'
|
|
// ]
|
|
// }
|
|
],
|
|
'selendroid':{
|
|
'mocha-bin': 'ci/mochas/selendroid-mocha',
|
|
'glob-patterns': [
|
|
'test/functional/selendroid/**/*-specs.js'
|
|
]
|
|
}
|
|
};
|