Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Write test report #433

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/pr_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,7 @@ jobs:
force-avd-creation: true
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: npm run test:e2e:android:release
script: |
npm run test:e2e:android
cat cavy_results.md >> $GITHUB_STEP_SUMMARY
working-directory: e2e
3 changes: 3 additions & 0 deletions .github/workflows/pr_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,6 @@ jobs:
working-directory: e2e
run: npm run test:e2e:ios

- name: Summarize results
working-directory: e2e
run: cat cavy_results.md >> $GITHUB_STEP_SUMMARY
5 changes: 1 addition & 4 deletions e2e/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
import { AppRegistry } from 'react-native';
import { TestableApp } from './src/TestableApp';

AppRegistry.registerComponent('ReactNativeTHEOplayerE2E', () => TestableApp);
console.error('This app can only be used with cavy-cli');
4 changes: 4 additions & 0 deletions e2e/index.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { AppRegistry } from 'react-native';
import { TestableApp } from './src/TestableApp';

AppRegistry.registerComponent('ReactNativeTHEOplayerE2E', () => TestableApp);
Loading
Loading