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 ca58beb

Browse files
committedJan 5, 2024
test: commented out the test case instead or removing
1 parent 258b3a9 commit ca58beb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
 

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

+13
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,19 @@ describe('Organization api test', () => {
6262
.catch(done)
6363
})
6464

65+
// it('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+
// })
77+
6578
it('should get all roles in an organization', done => {
6679
organization.roles()
6780
.then((roles) => {

0 commit comments

Comments
 (0)
Please sign in to comment.