Skip to content

Commit 6cf834c

Browse files
committed
style(lint): auto-reformat of the detox JS
no functional changes
1 parent 6c331b4 commit 6cf834c

File tree

1 file changed

+28
-32
lines changed

1 file changed

+28
-32
lines changed

tests/.detoxrc.js

Lines changed: 28 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -2,87 +2,83 @@
22
module.exports = {
33
testRunner: {
44
args: {
5-
'$0': 'jest',
6-
config: 'e2e/jest.config.js'
5+
$0: 'jest',
6+
config: 'e2e/jest.config.js',
77
},
88
jest: {
9-
setupTimeout: 120000
10-
}
9+
setupTimeout: 120000,
10+
},
1111
},
1212
apps: {
1313
'ios.debug': {
1414
type: 'ios.app',
1515
binaryPath: 'ios/build/Build/Products/Debug-iphonesimulator/testing.app',
16-
build: 'set -o pipefail && xcodebuild VALID_ARCHS="`uname -m`" CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ -workspace ios/testing.xcworkspace -scheme testing -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build | xcbeautify'
16+
build:
17+
'set -o pipefail && xcodebuild VALID_ARCHS="`uname -m`" CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ -workspace ios/testing.xcworkspace -scheme testing -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build | xcbeautify',
1718
},
1819
'ios.release': {
1920
type: 'ios.app',
2021
binaryPath: 'ios/build/Build/Products/Release-iphonesimulator/testing.app',
21-
build: 'export RCT_NO_LAUNCH_PACKAGER=true && set -o pipefail | xcodebuild CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ -workspace ios/testing.xcworkspace -scheme testing -configuration Release -sdk iphonesimulator -derivedDataPath ios/build | xcbeautify'
22+
build:
23+
'export RCT_NO_LAUNCH_PACKAGER=true && set -o pipefail | xcodebuild CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ -workspace ios/testing.xcworkspace -scheme testing -configuration Release -sdk iphonesimulator -derivedDataPath ios/build | xcbeautify',
2224
},
2325
'android.debug': {
2426
type: 'android.apk',
2527
binaryPath: 'android/app/build/outputs/apk/debug/app-debug.apk',
26-
build: 'cd android && ./gradlew assembleDebug assembleAndroidTest lintDebug -DtestBuildType=debug --warning-mode all && cd ..',
27-
reversePorts: [
28-
8080,
29-
8081,
30-
8090,
31-
9000,
32-
9099,
33-
9199
34-
]
28+
build:
29+
'cd android && ./gradlew assembleDebug assembleAndroidTest lintDebug -DtestBuildType=debug --warning-mode all && cd ..',
30+
reversePorts: [8080, 8081, 8090, 9000, 9099, 9199],
3531
},
3632
'android.release': {
3733
type: 'android.apk',
3834
binaryPath: 'android/app/build/outputs/apk/release/app-release.apk',
39-
build: 'cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release'
40-
}
35+
build: 'cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release',
36+
},
4137
},
4238
devices: {
4339
simulator: {
4440
type: 'ios.simulator',
4541
device: {
46-
type: 'iPhone 15'
47-
}
42+
type: 'iPhone 15',
43+
},
4844
},
4945
attached: {
5046
type: 'android.attached',
5147
device: {
52-
adbName: '.*'
53-
}
48+
adbName: '.*',
49+
},
5450
},
5551
emulator: {
5652
type: 'android.emulator',
5753
device: {
58-
avdName: 'TestingAVD'
59-
}
60-
}
54+
avdName: 'TestingAVD',
55+
},
56+
},
6157
},
6258
configurations: {
6359
'ios.sim.debug': {
6460
device: 'simulator',
65-
app: 'ios.debug'
61+
app: 'ios.debug',
6662
},
6763
'ios.sim.release': {
6864
device: 'simulator',
69-
app: 'ios.release'
65+
app: 'ios.release',
7066
},
7167
'android.att.debug': {
7268
device: 'attached',
73-
app: 'android.debug'
69+
app: 'android.debug',
7470
},
7571
'android.att.release': {
7672
device: 'attached',
77-
app: 'android.release'
73+
app: 'android.release',
7874
},
7975
'android.emu.debug': {
8076
device: 'emulator',
81-
app: 'android.debug'
77+
app: 'android.debug',
8278
},
8379
'android.emu.release': {
8480
device: 'emulator',
85-
app: 'android.release'
86-
}
87-
}
81+
app: 'android.release',
82+
},
83+
},
8884
};

0 commit comments

Comments
 (0)