forked from intercom/intercom-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin.js
38 lines (37 loc) · 1.33 KB
/
admin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import assert from 'assert';
import {Client} from '../lib';
import nock from 'nock';
describe('admins', () => {
it('should be listed', done => {
nock('https://api.intercom.io').get('/admins').reply(200, {});
const client = new Client('foo', 'bar').usePromises();
client.admins.list().then(r => {
assert.equal(200, r.statusCode);
done();
});
});
it('should find current admin', done => {
nock('https://api.intercom.io').get('/me').reply(200, {});
const client = new Client('foo', 'bar').usePromises();
client.admins.me().then(r => {
assert.equal(200, r.statusCode);
done();
});
});
it('should find admins by id', done => {
nock('https://api.intercom.io').get('/admins/baz').reply(200, {});
const client = new Client('foo', 'bar').usePromises();
client.admins.find('baz').then(r => {
assert.equal(200, r.statusCode);
done();
});
});
it('should update admin away mode and reassign settings', done => {
nock('https://api.intercom.io').put('/admins/baz/away', { away_mode_enabled: true, away_mode_reassign: false }).reply(200, {});
const client = new Client('foo', 'bar').usePromises();
client.admins.away('baz', { away_mode_enabled: true, away_mode_reassign: false }).then(r => {
assert.equal(200, r.statusCode);
done();
});
});
});