[WIP] test

This commit is contained in:
syuilo 2017-01-17 10:06:54 +09:00
parent 00fbc45536
commit 1fefe5eba4
2 changed files with 7 additions and 3 deletions

View file

@ -2,9 +2,6 @@
* API TESTS
*/
// During the test the env variable is set to test
process.env.NODE_ENV = 'test';
const chai = require('chai');
const chaiHttp = require('chai-http');
const should = chai.should();
@ -35,6 +32,7 @@ describe('API', () => {
.end((err, res) => {
res.should.have.status(200);
res.body.should.be.a('object');
res.body.should.have.property('username').eql(account.username);
done();
});
});

6
test/index.js Normal file
View file

@ -0,0 +1,6 @@
// During the test the env variable is set to test
process.env.NODE_ENV = 'test';
// Init babel
require('babel-core/register');
require('babel-polyfill');