extracts out tests into separate files to establish a better testing pattern

This commit is contained in:
James
2020-04-16 15:03:16 -04:00
parent 5699bb6ecd
commit f4faefbd7e
24 changed files with 213 additions and 447 deletions

6
jest.config.js Normal file
View File

@@ -0,0 +1,6 @@
module.exports = {
verbose: true,
testEnvironment: 'node',
globalSetup: '<rootDir>/src/tests/globalSetup.js',
globalTeardown: '<rootDir>/src/tests/globalTeardown.js',
};