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

13 lines
338 B
JavaScript

const app = require('../../app')
const request = require('supertest')
describe('settings', () => {
test('it should render the settings page', () => {
return request(app).get('/settings')
.expect(200)
.then((response) => {
expect(response.text.match(/Connected to space “.+”/)).toBeTruthy()
})
})
})