-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathrn-harness.config.mjs
More file actions
35 lines (29 loc) · 784 Bytes
/
rn-harness.config.mjs
File metadata and controls
35 lines (29 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import {
androidPlatform,
androidEmulator,
} from "@react-native-harness/platform-android";
import {
applePlatform,
appleSimulator,
} from "@react-native-harness/platform-apple";
const config = {
entryPoint: "./index.js",
appRegistryComponentName: "NitroSQLiteExample",
runners: [
androidPlatform({
name: "android",
device: androidEmulator("Pixel_8_API_35"),
bundleId: "com.margelo.rnnitrosqlite.example",
}),
applePlatform({
name: "ios",
device: appleSimulator("iPhone 17 Pro", "26.2"),
bundleId: "com.margelo.rnnitrosqlite.example",
}),
],
defaultRunner: "android",
bridgeTimeout: 120000,
resetEnvironmentBetweenTestFiles: true,
unstable__skipAlreadyIncludedModules: false,
};
export default config;