UNPKG

boilerplate-gen

Version:
16 lines (13 loc) 382 B
const request = require('supertest'); const app = require('../src/app'); describe('GET /api/v1', () => { it('responds with a json message', function(done) { request(app) .get('/api/v1') .set('Accept', 'application/json') .expect('Content-Type', /json/) .expect(200, { message: 'Welcome to the Version 1 of the API' }, done); }); });