Commit 7643cee8 authored by Vivek Kasture's avatar Vivek Kasture
Browse files

Issue #SH-1249 fix: Reverted toast message changes

parent f01519df
master Dark_theme SB-25589 SB-28090 aws_fileRead dependabot/npm_and_yarn/src/app/client/decode-uri-component-0.2.2 dependabot/npm_and_yarn/src/app/decode-uri-component-0.2.2 dependabot/npm_and_yarn/src/app/express-4.17.3 dependabot/npm_and_yarn/src/app/jsonwebtoken-9.0.0 dependabot/npm_and_yarn/src/desktop/OpenRAP/decode-uri-component-0.2.2 dependabot/npm_and_yarn/src/desktop/OpenRAP/express-4.17.3 dependabot/npm_and_yarn/src/desktop/OpenRAP/jsonwebtoken-9.0.0 dependabot/npm_and_yarn/src/desktop/OpenRAP/qs-6.5.3 dependabot/npm_and_yarn/src/desktop/decode-uri-component-0.2.2 dependabot/npm_and_yarn/src/desktop/express-4.17.3 dependabot/npm_and_yarn/src/desktop/jsonwebtoken-9.0.0 dependabot/npm_and_yarn/src/desktop/qs-6.10.3 filters_5.1.1 gcp gcp_test keshavprasadms-patch-1 keshavprasadms-patch-2 release-3.3.0 release-3.3.1 release-3.3.2 release-3.4.0 release-3.4.1 release-3.4.2 release-3.4.3 release-3.4.4 release-3.4.5 release-3.4.6 release-3.4.7 release-3.5.0 release-3.5.1 release-3.5.2 release-3.5.3 release-3.6.0 release-3.6.1 release-3.6.5 release-3.6.6 release-3.7.0 release-3.7.1 release-3.7.2 release-3.8.0 release-3.8.1 release-3.8.2 release-3.8.3 release-3.9.0 release-3.9.1 release-3.9.2 release-3.9.3 release-4.0.0 release-4.0.1 release-4.0.2 release-4.1 release-4.1.0 release-4.1.1 release-4.10.0 release-4.10.0.1 release-4.10.1 release-4.10.2 release-4.10.2.1 release-4.10.2.2 release-4.10.3 release-4.2.0 release-4.2.1 release-4.3.0 release-4.3.1 release-4.4.0 release-4.4.1 release-4.5.0 release-4.5.1 release-4.5.2 release-4.6.0 release-4.7.0 release-4.7.1 release-4.8.0 release-4.8.5 release-4.9.0 release-4.9.1 release-5.0.0 release-5.0.0.1 release-5.0.0.2 release-5.0.0.3 release-5.0.1 release-5.0.2 release-5.1.0 release-5.1.1 revert-5244-sh-809 revert-5260-SB-table-3.3.0 revert-8284-release-5.0.0 sharathkashyap-patch-1 Tags unavailable
No related merge requests found
Showing with 1 addition and 20 deletions
+1 -20
......@@ -193,21 +193,6 @@ describe('ConsentPiiComponent', () => {
expect(component.getUserConsent).toHaveBeenCalled();
expect(component.showConsentPopup).toBe(false);
});
it('should update User Consent', () => {
const userService = TestBed.get(UserService);
const toastService = TestBed.get(ToasterService);
userService._userProfile = MockData.userProfile;
component.collection = MockData.collection;
const csUserService = TestBed.get('CS_USER_SERVICE');
spyOn(csUserService, 'updateConsent').and.returnValue(of(MockData.updateConsentResponse));
spyOn(toastService, 'error');
spyOn(component, 'getUserConsent');
component.updateUserConsent(false);
expect(csUserService.updateConsent).toHaveBeenCalled();
expect(toastService.error).toHaveBeenCalledWith('Your data settings are not submitted!');
expect(component.getUserConsent).toHaveBeenCalled();
expect(component.showConsentPopup).toBe(false);
});
it('should not update User Consent', () => {
const userService = TestBed.get(UserService);
......
......@@ -151,11 +151,7 @@ export class ConsentPiiComponent implements OnInit {
this.csUserService.updateConsent(request, { apiPath: '/learner/user/v1' })
.pipe(takeUntil(this.unsubscribe))
.subscribe(() => {
if (isActive) {
this.toasterService.success(_.get(this.resourceService, 'messages.smsg.dataSettingSubmitted'));
} else {
this.toasterService.error(_.get(this.resourceService, 'messages.fmsg.dataSettingNotSubmitted'));
}
this.toasterService.success(_.get(this.resourceService, 'messages.smsg.dataSettingSubmitted'));
this.getUserConsent();
}, error => {
this.toasterService.error(_.get(this.resourceService, 'messages.emsg.m0005'));
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment