Skip to content

Instantly share code, notes, and snippets.

@Bobjayafam
Bobjayafam / sample.test.js
Created March 20, 2019 06:25
Sample test for Authors Haven
import chai from 'chai';
import chaiHttp from 'chai-http';
import app from '../app';
chai.use(chaiHttp);
const should = chai.should();
describe('GET user profile', () => {
it('should return a single user profile', (done) => {
chai.request(app)