e751625765c839c83d5517f7a5e81dcb6437639e
[motion.git] / server / api / contact_manager / contact_manager.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/contactmanager', function() {
8
9   it('should respond with JSON array', function(done) {
10     request(app)
11       .get('/api/contactmanager')
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 });