Skip to content

Instantly share code, notes, and snippets.

@zgababa
Created January 26, 2017 15:12
Show Gist options
  • Save zgababa/f3a5321418485e49982fbf3ceda726f7 to your computer and use it in GitHub Desktop.
Save zgababa/f3a5321418485e49982fbf3ceda726f7 to your computer and use it in GitHub Desktop.
'use strict';
const request = require('request-promise');
const integrationServer = require("../../utils/integrationServer");
const chai = require('chai');
const expect = chai.expect;
describe('Pokemon integration', () => {
let app;
beforeEach((done) => {
app = integrationServer.start(done);
});
afterEach((done) => {
integrationServer.stop(app, done);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment