df7a45403f6bdedec42be06565e2c30f4fc512b6
[motion.git] / server / api / report_chat / report_chat.spec.js
1 'use strict';
2
3 var should = require('should');
4 var app = require('../../app');
5 var request = require('supertest');
6
7 describe('GET /api/report/chats', function() {
8
9   it('should respond with JSON array', function(done) {
10     request(app)
11       .get('/api/report/chats')
12       .expect(200)
13       .expect('Content-Type', /json/)
14       .end(function(err, res) {
15         if (err) return done(err);
16         res.body.should.be.instanceof(Array);
17         done();
18       });
19   });
20 });