File size: 886 Bytes
56b6519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
module.exports = function (request, app) {
  describe('Roles Suite Tests', () => {
    describe('User Roles', () => {
      it('Get the users init state', async () => {
        var response = await request(app).get('/api/users/init');

        expect(response.status).toBe(200);
        expect(response.body.datas).toBe(false);
      });
    });

    describe('Report Roles', () => {
      it('Get the users init state', async () => {
        var response = await request(app).get('/api/users/init');

        expect(response.status).toBe(200);
        expect(response.body.datas).toBe(false);
      });
    });

    describe('Admin Roles', () => {
      it('Get the users init state', async () => {
        var response = await request(app).get('/api/users/init');

        expect(response.status).toBe(200);
        expect(response.body.datas).toBe(false);
      });
    });
  });
};