Fix default index

This commit is contained in:
Typicode
2014-11-16 18:13:19 +01:00
parent b3b7a0cedc
commit 2e3d833ec4
6 changed files with 3 additions and 3 deletions

View File

@ -253,7 +253,7 @@ describe('Server', function() {
it('should respond with html', function(done) {
request(server)
.get('/')
.expect('Content-Type', /html/)
.expect(/You're successfully running JSON Server/)
.expect(200, done);
});
});