transfer ownership is not used anymore

This commit is contained in:
Girish Ramakrishnan
2022-05-26 14:30:32 -07:00
parent c9916c4107
commit 5b075e3918
3 changed files with 0 additions and 26 deletions

View File

@@ -640,15 +640,5 @@ describe('Users API', function () {
expect(response.statusCode).to.equal(409);
});
});
describe('transfer ownership', function () {
it('succeeds', async function () {
const response = await superagent.post(`${serverUrl}/api/v1/users/${user.id}/make_owner`)
.query({ access_token: owner.token })
.send({});
expect(response.statusCode).to.equal(204);
});
});
});