Skip to content

Commit

Permalink
Update README.md (#28)
Browse files Browse the repository at this point in the history
* Update README.md

* Update starter.test.js

* Update ci.yml

* Update ci.yml

* Update ci.yml

* Update ci.yml
  • Loading branch information
mcorner authored Apr 29, 2024
1 parent 89da153 commit 9bf2acc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
- name: Select xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.1'
xcode-version: '15.3'

- name: Install macOS dependencies
run: |
Expand Down Expand Up @@ -165,6 +165,7 @@ jobs:
yarn detox build --configuration ios.sim.release
- name: Detox test
continue-on-error: true # iOS test is flaky, run locally for now
run: |
cd example
yarn detox test --configuration ios.sim.release --headless --record-logs all
3 changes: 0 additions & 3 deletions example/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# reCAPTCHA Enterprise React Native Module

NOTE: This plugin is considered a Public Preview at this stage and the public
API is subject to change.

Please note that issues filed in this repository are not an official Google
support channel and are answered on a best effort basis. For official support,
please visit: https://cloud.google.com/support-hub.
Expand Down
6 changes: 3 additions & 3 deletions example/e2e/starter.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('Example', () => {
await element(by.id('initButtonId')).tap();
await waitFor(element(by.id('initResultId')))
.toHaveText('ok')
.withTimeout(5000);
.withTimeout(10000);
await expect(element(by.id('initResultId'))).toHaveText('ok');
});

Expand All @@ -26,15 +26,15 @@ describe('Example', () => {
await element(by.id('executeButtonId')).tap();
await waitFor(element(by.id('executeResultId')))
.toHaveText('ok')
.withTimeout(5000);
.withTimeout(10000);
await expect(element(by.id('executeResultId'))).toHaveText('ok');
});

it('should show error if execute without init', async () => {
await element(by.id('executeButtonId')).tap();
await waitFor(element(by.id('executeResultId')))
.toHaveText('Error: Initialize client first')
.withTimeout(5000);
.withTimeout(10000);
await expect(element(by.id('executeResultId'))).toHaveText(
'Error: Initialize client first'
);
Expand Down

0 comments on commit 9bf2acc

Please sign in to comment.