mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-10 16:56:31 +00:00
c80992b6bf
* Update prettier config for the project. * Add prettier to make lint-fix.
38 lines
822 B
JavaScript
38 lines
822 B
JavaScript
module.exports = {
|
|
testRunner: 'jest',
|
|
testRegex: '\\.visual\\.js$',
|
|
'runner-config': 'visual-test/config.json',
|
|
devices: {
|
|
simulator: {
|
|
type: 'ios.simulator',
|
|
device: {
|
|
type: 'iPhone 11 Pro',
|
|
},
|
|
},
|
|
},
|
|
apps: {
|
|
'ios.release': {
|
|
name: 'StatusIm',
|
|
type: 'ios.app',
|
|
binaryPath: 'ios/build/Build/Products/Release-iphonesimulator/StatusIm.app',
|
|
build: 'make release-ios',
|
|
},
|
|
'ios.debug': {
|
|
name: 'StatusIm',
|
|
type: 'ios.app',
|
|
binaryPath: process.env.TEST_BINARY_PATH,
|
|
build: "make run-ios SIMULATOR='iPhone 11 Pro'",
|
|
},
|
|
},
|
|
configurations: {
|
|
'ios.sim.release': {
|
|
device: 'simulator',
|
|
app: 'ios.release',
|
|
},
|
|
'ios.sim.debug': {
|
|
device: 'simulator',
|
|
app: 'ios.debug',
|
|
},
|
|
},
|
|
};
|