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

Update Example .travis.yml in CI Guide #586

Merged
merged 2 commits into from
Mar 2, 2018
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
2 changes: 1 addition & 1 deletion detox/src/devices/AppleSimUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ class AppleSimUtils {

} catch (ex) {
throw new Error(`Could not parse response from applesimutils, please update applesimutils and try again.
'brew uninstall applesimutils && brew tap wix/brew && brew install --HEAD applesimutils'`);
'brew uninstall applesimutils && brew tap wix/brew && brew install applesimutils'`);
}
return parsed;
}
Expand Down
2 changes: 1 addition & 1 deletion detox/src/devices/AppleSimUtils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ describe('AppleSimUtils', () => {
fail('should throw');
} catch (e) {
expect(e.message).toMatch(`Could not parse response from applesimutils, please update applesimutils and try again.
'brew uninstall applesimutils && brew tap wix/brew && brew install --HEAD applesimutils'`);
'brew uninstall applesimutils && brew tap wix/brew && brew install applesimutils'`);
}
});
});
Expand Down
4 changes: 3 additions & 1 deletion docs/Guide.RunningOnCI.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ env:
- NODE_VERSION=stable

install:
- brew tap wix/brew
- brew install applesimutils
- curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
- export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
- nvm install $NODE_VERSION
Expand Down Expand Up @@ -134,7 +136,7 @@ workflows:
#!/bin/bash

brew tap wix/brew
brew install applesimutils --HEAD
brew install applesimutils
title: Install Detox Utils
- script:
inputs:
Expand Down
2 changes: 1 addition & 1 deletion docs/Introduction.GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ A collection of utils for Apple simulators, Detox uses it communicate with the s

```sh
brew tap wix/brew
brew install --HEAD applesimutils
brew install applesimutils
```

> TIP: Verify it works by typing in terminal `applesimutils` to output the tool help screen
Expand Down