Fixed jest mocha
This commit is contained in:
@@ -1,4 +1,9 @@
|
||||
const cwd = process.cwd()
|
||||
const is_jest = !!global.test
|
||||
if (is_jest) { // it's jest
|
||||
global.before = (msg,fn) => global.beforeAll(fn||msg)
|
||||
global.after = (msg,fn) => global.afterAll(fn||msg)
|
||||
}
|
||||
before (()=> process.chdir(__dirname))
|
||||
after (()=> process.chdir(cwd))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user