Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2e38341

Browse files
committedJan 5, 2024
test: removed the skipped test case from organization test suit
1 parent 2f32924 commit 2e38341

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed
 

‎test/sanity-check/api/organization-test.js

-13
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,6 @@ describe('Organization api test', () => {
6161
})
6262
.catch(done)
6363
})
64-
// need to test with transfer ownership
65-
it.skip('should transfer Organization Ownership', done => {
66-
organization.transferOwnership('em@em.com')
67-
.then((data) => {
68-
expect(data.notice).to.be.equal('Email has been successfully sent to the user.', 'Message does not match')
69-
done()
70-
})
71-
.catch((error) => {
72-
console.log(error)
73-
expect(error).to.be.equal(null, 'Failed Transfer Organization Ownership')
74-
done()
75-
})
76-
})
7764

7865
it('should get all roles in an organization', done => {
7966
organization.roles()

0 commit comments

Comments
 (0)
Please sign in to comment.