This commit is contained in:
Girish Ramakrishnan
2026-02-21 20:03:26 +01:00
parent 4ad9ccabe0
commit ea5953a397
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ describe('Provision', function () {
.reply(201, { cloudronId: '32', cloudronToken: 'xx' });
const scope2 = nock(await appstore.getApiServerOrigin())
.post('/api/v1/subscription3?accessToken=xx', (body) => typeof body.state === 'object' && typeof body.state.userCount === 'number')
.post('/api/v1/subscription3?accessToken=xx', (body) => typeof body.state === 'object' && typeof body.state.users.count === 'number')
.reply(200, { features: {} });
await provision.activate('username', 'password', 'test@cloudron.io', 'Some Name', '1.2.3.4', auditSource);