Skip to content
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
10 changes: 6 additions & 4 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
agents:
queue: mbms
steps:
- block: ":rocket: Release!"
prompt: "Fill out the details for release"
Expand All @@ -23,8 +25,8 @@ steps:
- "nvm install"
- "npm install"
- "npm run test-js"
- "JAVA_HOME=/usr/local/opt/openjdk@11 npm run test-unit-android -- --release"
- "JAVA_HOME=/usr/local/opt/openjdk@11 npm run test-e2e-android-multi -- --release --headless --verbose --ci"
- "npm run test-unit-android -- --release"
- "npm run test-e2e-android-multi -- --release --headless --verbose --ci"
key: "android_build"
timeout_in_minutes: 90
artifact_paths: "/Users/builder/work/artifacts/**/*"
Expand All @@ -41,8 +43,8 @@ steps:
command:
- "nvm install"
- "npm install"
- "JAVA_HOME=/usr/local/opt/openjdk@11 npm run test-snapshot-ios -- --release"
- "JAVA_HOME=/usr/local/opt/openjdk@11 npm run test-e2e-ios -- --release --multi --ci"
- "npm run test-snapshot-ios -- --release"
- "npm run test-e2e-ios -- --release --multi --ci"
key: "ios_e2e"
timeout_in_minutes: 90
artifact_paths: "/Users/builder/work/artifacts/**/*"
Expand Down
2 changes: 1 addition & 1 deletion e2e/ApplicationLifecycleTest.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ describe.e2e('application lifecycle test', () => {

xit(':android: pressing menu opens dev menu', async () => {
if (!IS_RELEASE) {
Android.pressMenu();
await Android.pressMenu();
await sleep(1000);
await expect(elementByLabel('Reload')).toBeVisible();
}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions scripts/test-snapshot.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const exec = require('shell-utils').exec;

const android = includes(process.argv, '--android');
const release = includes(process.argv, '--release');
const BRANCH = process.env.BRANCH;
const BRANCH = process.env.BUILDKITE_BRANCH;
const RECORD = process.env.RECORD === 'true';

function run() {
Expand All @@ -14,7 +14,7 @@ function run() {
}
}

function runAndroidSnapshotTests() {}
function runAndroidSnapshotTests() { }

function runIosSnapshotTests() {
exec.execSync('npm run build');
Expand Down