Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions src/profile/__mocks__/invalidUser.mockStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ module.exports = {
drafts: {},
isLoadingProfile: false,
isAuthenticatedUserProfile: true,
countries: [],
},
router: {
location: {
Expand Down
3 changes: 2 additions & 1 deletion src/profile/__mocks__/savingEditedBio.mockStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ module.exports = {
}
],
drafts: {},
isLoadingProfile: false
isLoadingProfile: false,
countries: [],
},
router: {
location: {
Expand Down
1 change: 1 addition & 0 deletions src/profile/__mocks__/viewOtherProfile.mockStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ module.exports = {
drafts: {},
isLoadingProfile: false,
learningGoal: 'advance_career',
countries: [],
},
router: {
location: {
Expand Down
1 change: 1 addition & 0 deletions src/profile/__mocks__/viewOwnProfile.mockStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ module.exports = {
createdDate: '2019-03-04T19:31:39.896806Z'
}
],
countries:[{code:"AX", name:"Åland Islands"},{code:"AL", name:"Albania"}],
drafts: {},
isLoadingProfile: false
},
Expand Down
Loading