Files
the-example-app-nodejs/test/integration/index.test.js
2017-11-07 17:33:32 +01:00

10 lines
234 B
JavaScript

/* global describe, test */
const app = require('../../app')
const request = require('supertest')
describe('Home page', () => {
test('it should render the landing page', () => {
return request(app).get('/').expect(200)
})
})