freeCodeCamp/test/app_test.js

10 lines
214 B
JavaScript
Raw Normal View History

2014-02-26 02:15:35 +00:00
var request = require('supertest');
2014-02-26 07:34:49 +00:00
var app = require('../app.js');
2014-02-26 02:15:35 +00:00
describe('GET /', function() {
2014-02-26 07:34:49 +00:00
it('should return 200 OK', function(done) {
2014-02-26 02:15:35 +00:00
request(app)
.get('/')
.expect(200, done);
});
2014-02-26 07:34:49 +00:00
});