test folder reorganization

This commit is contained in:
Sahat Yalkabov
2014-02-26 02:34:49 -05:00
parent af682428fd
commit 657692c277
2 changed files with 3 additions and 51 deletions

10
test/app_test.js Normal file
View File

@@ -0,0 +1,10 @@
var request = require('supertest');
var app = require('../app.js');
describe('GET /', function() {
it('should return 200 OK', function(done) {
request(app)
.get('/')
.expect(200, done);
});
});