-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #601 from CruGlobal/develop
Develop > Master
- Loading branch information
Showing
279 changed files
with
971 additions
and
865 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
__tests__/storeMigrations.js → src/__tests__/storeMigrations.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,17 +4,17 @@ import i18next from 'i18next'; | |
import MockDate from 'mockdate'; | ||
import { Linking } from 'react-native'; | ||
|
||
import * as callApi from '../../src/actions/api'; | ||
import * as constants from '../../src/constants'; | ||
import { REQUESTS } from '../../src/actions/api'; | ||
import * as navigation from '../../src/actions/navigation'; | ||
import * as login from '../../src/actions/login'; | ||
import * as auth from '../../src/actions/auth'; | ||
import * as person from '../../src/actions/person'; | ||
import * as organizations from '../../src/actions/organizations'; | ||
import * as stages from '../../src/actions/stages'; | ||
import * as steps from '../../src/actions/steps'; | ||
import * as notifications from '../../src/actions/notifications'; | ||
import * as callApi from '../api'; | ||
import { REQUESTS } from '../api'; | ||
import * as constants from '../../constants'; | ||
import * as navigation from '../navigation'; | ||
import * as login from '../login'; | ||
import * as auth from '../auth'; | ||
import * as person from '../person'; | ||
import * as organizations from '../organizations'; | ||
import * as stages from '../stages'; | ||
import * as steps from '../steps'; | ||
import * as notifications from '../notifications'; | ||
import { | ||
keyLogin, | ||
refreshAccessToken, | ||
|
@@ -23,16 +23,16 @@ import { | |
logout, | ||
upgradeAccount, | ||
openKeyURL, | ||
} from '../../src/actions/auth'; | ||
import { mockFnWithParams } from '../../testUtils'; | ||
import { LOGIN_OPTIONS_SCREEN } from '../../src/containers/LoginOptionsScreen'; | ||
import { OPEN_URL } from '../../src/constants'; | ||
import { getTimezoneString } from '../../src/actions/auth'; | ||
import { refreshAnonymousLogin } from '../../src/actions/auth'; | ||
import { deletePushToken } from '../../src/actions/notifications'; | ||
import * as onboardingProfile from '../../src/actions/onboardingProfile'; | ||
|
||
jest.mock('../../src/actions/notifications'); | ||
} from '../auth'; | ||
import { mockFnWithParams } from '../../../testUtils'; | ||
import { LOGIN_OPTIONS_SCREEN } from '../../containers/LoginOptionsScreen'; | ||
import { OPEN_URL } from '../../constants'; | ||
import { getTimezoneString } from '../auth'; | ||
import { refreshAnonymousLogin } from '../auth'; | ||
import { deletePushToken } from '../notifications'; | ||
import * as onboardingProfile from '../onboardingProfile'; | ||
|
||
jest.mock('../../actions/notifications'); | ||
|
||
const email = 'klas&[email protected]'; | ||
const password = 'this&is=unsafe'; | ||
|
11 changes: 4 additions & 7 deletions
11
__tests__/actions/celebration.js → src/actions/__tests__/celebration.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 11 additions & 11 deletions
22
__tests__/actions/interactions.js → src/actions/__tests__/interactions.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 6 additions & 10 deletions
16
__tests__/actions/journey.js → src/actions/__tests__/journey.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.