Skip to content

Commit

Permalink
fixed some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharpandey13 committed Aug 22, 2024
1 parent 85f197d commit d58f7f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/management/self-service-profiles.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ describe('SelfServiceProfilesManager', () => {
});
});

// this unit test is for the getSelfServiceProfileById() method
// this unit test is for the deleteSelfServiceProfiles() method
it('should delete one of self-service profile by id', async () => {
// eslint-disable-next-line prettier/prettier
nockedRequest = nock(API_URL)
Expand Down Expand Up @@ -233,7 +233,7 @@ describe('SelfServiceProfilesManager', () => {
});
});

// this unit test is for the getSelfServiceProfileById() method
// this unit test is for the patchSelfServiceProfiles() method
it('should update one of self-service profile by id', async () => {
const nockedResponse: SsProfile = {
id: requestParameters.id,
Expand Down Expand Up @@ -295,8 +295,8 @@ describe('SelfServiceProfilesManager', () => {
});
});

// this unit test is for the getSelfServiceProfileById() method
it('should update one of self-service profile by id', async () => {
// this unit test is for the postSsoTicket() method
it('should set sso ticket for one sso profile', async () => {
const nockedResponse: SsoAccessTicketResponse = {
ticket: 'https://example.com/ticket',
};
Expand Down

0 comments on commit d58f7f6

Please sign in to comment.