Global setup/teardown of nock
This commit is contained in:
Родитель
27806cf154
Коммит
93e984f60c
|
@ -0,0 +1,11 @@
|
|||
/* eslint-env mocha */
|
||||
const nock = require('nock')
|
||||
|
||||
beforeEach(function () {
|
||||
nock.disableNetConnect()
|
||||
})
|
||||
|
||||
afterEach(function () {
|
||||
nock.cleanAll()
|
||||
nock.enableNetConnect()
|
||||
})
|
Загрузка…
Ссылка в новой задаче