Skip to content

Instantly share code, notes, and snippets.

@abinavseelan
Created January 25, 2018 10:28
Show Gist options
  • Select an option

  • Save abinavseelan/1392462bb38d05eaaa17f0a9cadc95e9 to your computer and use it in GitHub Desktop.

Select an option

Save abinavseelan/1392462bb38d05eaaa17f0a9cadc95e9 to your computer and use it in GitHub Desktop.
const request = require('supertest');
const app = require('../server/demo-server');
describe('Test /status', () => {
it('should return Ok', async () => {
const response = await request(app).get('/status');
expect(response.text).toBe('Ok');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment