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 8074d29 commit ee29c57Copy full SHA for ee29c57
test/provisioning/account_spec.js
@@ -52,13 +52,11 @@ describe('account API - Provisioning', function () {
52
53
after('Destroy the sub account and user that was created', async () => {
54
let delRes = await cloudinary.provisioning.account.delete_sub_account(CLOUD_ID);
55
- expect(delRes.message).to.eql('ok');
56
-
57
58
let delUserRes = await cloudinary.provisioning.account.delete_user(USER_ID);
59
- expect(delUserRes.message).to.eql('ok');
60
61
let delGroupRes = await cloudinary.provisioning.account.delete_user_group(GROUP_ID);
+
+ expect(delRes.message).to.eql('ok');
+ expect(delUserRes.message).to.eql('ok');
62
expect(delGroupRes.ok).to.eql(true); // notice the different response structure
63
});
64
0 commit comments