-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
:
- Loading branch information
Showing
576 changed files
with
6,421 additions
and
2,919 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/** @type {Detox.DetoxConfig} */ | ||
module.exports = { | ||
logger: { | ||
level: process.env.CI ? 'debug' : undefined, | ||
}, | ||
testRunner: { | ||
$0: 'jest', | ||
args: { | ||
config: 'e2e/jest.config.js', | ||
_: ['e2e'], | ||
}, | ||
}, | ||
artifacts: { | ||
plugins: { | ||
log: process.env.CI ? 'failing' : undefined, | ||
screenshot: 'failing', | ||
}, | ||
}, | ||
apps: { | ||
'ios.debug': { | ||
type: 'ios.app', | ||
build: | ||
'xcodebuild -workspace ios/eastestsexample.xcworkspace -scheme eastestsexample -configuration Debug -sdk iphonesimulator -arch x86_64 -derivedDataPath ios/build', | ||
binaryPath: 'ios/build/Build/Products/Debug-iphonesimulator/eastestsexample.app', | ||
}, | ||
'ios.release': { | ||
type: 'ios.app', | ||
build: | ||
'xcodebuild -workspace ios/eastestsexample.xcworkspace -scheme eastestsexample -configuration Release -sdk iphonesimulator -arch x86_64 -derivedDataPath ios/build', | ||
binaryPath: 'ios/build/Build/Products/Release-iphonesimulator/eastestsexample.app', | ||
}, | ||
'android.debug': { | ||
type: 'android.apk', | ||
build: | ||
'cd android && gradlew :app:assembleDebug :app:assembleAndroidTest -DtestBuildType=debug && cd ..', | ||
binaryPath: 'android/app/build/outputs/apk/debug/app-debug.apk', | ||
}, | ||
'android.release': { | ||
type: 'android.apk', | ||
build: | ||
'cd android && gradlew :app:assembleRelease :app:assembleAndroidTest -DtestBuildType=release && cd ..', | ||
binaryPath: 'android/app/build/outputs/apk/release/app-release.apk', | ||
}, | ||
}, | ||
devices: { | ||
simulator: { | ||
type: 'ios.simulator', | ||
device: { | ||
type: 'iPhone 14', | ||
}, | ||
}, | ||
emulator: { | ||
type: 'android.emulator', | ||
device: { | ||
avdName: 'Pixel_7_API_33', | ||
}, | ||
}, | ||
}, | ||
configurations: { | ||
'ios.debug': { | ||
device: 'simulator', | ||
app: 'ios.debug', | ||
}, | ||
'ios.release': { | ||
device: 'simulator', | ||
app: 'ios.release', | ||
}, | ||
'android.debug': { | ||
device: 'emulator', | ||
app: 'android.debug', | ||
}, | ||
'android.release': { | ||
device: 'emulator', | ||
app: 'android.release', | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,10 @@ node_modules/ | |
dist/ | ||
web-build/ | ||
|
||
#pre-build folders | ||
android | ||
ios | ||
|
||
# Native | ||
*.orig.* | ||
*.jks | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"git.ignoreLimitWarning": true, | ||
"java.configuration.updateBuildConfiguration": "interactive" | ||
"java.configuration.updateBuildConfiguration": "interactive", | ||
"java.compile.nullAnalysis.mode": "automatic" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.