Skip to content

Commit

Permalink
upgrade react-native to v0.61.4
Browse files Browse the repository at this point in the history
upgrade react-native-navigation
use toExist instead of toBeVisible for iOS drawer button detox tests
  • Loading branch information
ruddell committed Nov 17, 2019
1 parent 87871b9 commit cde2591
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion boilerplate/e2e/account/login-screen.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ describe('Login Screen Tests', () => {
await element(by.id('menuButton')).tap()
await element(by.id('logoutDrawerButton')).tap()
await element(by.id('menuButton')).tap()
await expect(element(by.id('loginDrawerButton'))).toBeVisible()
await expect(element(by.id('loginDrawerButton'))).toExist()
})
})
2 changes: 1 addition & 1 deletion boilerplate/package.json.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"redux-persist": "6.0.0",
"redux-saga": "1.1.1",
"reduxsauce": "1.1.0",
"react-native-navigation": "3.2.0",
"react-native-navigation": "3.6.0",
"seamless-immutable": "7.1.4",
<%_ if (props.authType === 'session' || props.authType === 'uaa' || props.authType === 'oauth2') { _%>
"react-native-cookies": "3.3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/react-native-version.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { pathOr, is } = require('ramda')

// the default React Native version for this boilerplate
const REACT_NATIVE_VERSION = '0.61.0'
const REACT_NATIVE_VERSION = '0.61.4'
// https://github.com/react-native-community/react-native-releases/blob/master/CHANGELOG.md

// where the version lives under gluegun
Expand Down

0 comments on commit cde2591

Please sign in to comment.