In the root of the test folder, create a global test helper test/helper.js which has your before and beforeEach
// globals
global.assert = require('assert');
// setup
before();
beforeEach();
// teardown
after();
afterEach();
In the root of the test folder, create a global test helper test/helper.js which has your before and beforeEach
// globals
global.assert = require('assert');
// setup
before();
beforeEach();
// teardown
after();
afterEach();