diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eebf23de..fcb15cef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,6 +58,8 @@ jobs: - name: Build test app run: scripts/build-test-app.sh --android --device - name: Upload artifact to BrowserStack + if: env.BROWSERSTACK_USERNAME != '' run: scripts/upload-browserstack.sh --android - name: Run e2e tests + if: env.BROWSERSTACK_USERNAME != '' run: scripts/test-app.sh --android --device diff --git a/test/e2e-tooling/caps.js b/test/e2e-tooling/caps.js index 79660264..05488537 100644 --- a/test/e2e-tooling/caps.js +++ b/test/e2e-tooling/caps.js @@ -77,7 +77,6 @@ const configs = { function getCaps(environment, os, runtime) { const key = environment.toLowerCase() + capitalize(os) + capitalize(runtime); - console.log(key); const caps = configs[key]; caps.name = `cordova-plugin-advanced-http (${os})`;