Skip to content

Instantly share code, notes, and snippets.

View nwamugo's full-sized avatar
👨‍🚀
putting man on the moon

UGOJI Duziem nwamugo

👨‍🚀
putting man on the moon
  • Lagos, Nigeria
View GitHub Profile
@nwamugo
nwamugo / ah.test.js
Last active March 24, 2019 21:51
Test demo for team Zinnia
import request from 'supertest';
import chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
import app from '../app';
chai.use(chaiAsPromised);
const { expect } = chai;
const server = request(app);