Created
January 26, 2017 15:12
-
-
Save zgababa/f3a5321418485e49982fbf3ceda726f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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