We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2892aa3 commit dbb1bf9Copy full SHA for dbb1bf9
test/sanity-check/api/organization-test.js
@@ -62,6 +62,19 @@ describe('Organization api test', () => {
62
.catch(done)
63
})
64
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
75
76
77
+
78
it('should get all roles in an organization', done => {
79
organization.roles()
80
.then((roles) => {
0 commit comments