Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
dudchakk committed Nov 27, 2024
1 parent c108543 commit 9d5ec70
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/unit/redux/editProfileSlice.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ const userDataMock = {
scientificActivities: 'Activities',
awards: 'Awards'
},
aboutStudent: {
personalIntroduction: '',
learningGoals: '',
learningActivities: ''
},
notificationSettings: {
isOfferStatusNotification: false,
isChatNotification: false,
Expand Down Expand Up @@ -63,6 +68,11 @@ const expectedUserData = {
scientificActivities: 'Activities',
awards: 'Awards'
},
aboutStudent: {
personalIntroduction: '',
learningGoals: '',
learningActivities: ''
},
notificationSettings: {
isOfferStatusNotification: false,
isChatNotification: false,
Expand Down Expand Up @@ -94,6 +104,11 @@ const initialState = {
scientificActivities: '',
awards: ''
},
aboutStudent: {
personalIntroduction: '',
learningGoals: '',
learningActivities: ''
},
notificationSettings: {
isOfferStatusNotification: false,
isChatNotification: false,
Expand Down

0 comments on commit 9d5ec70

Please sign in to comment.