1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 00:39:25 +00:00

Added jest testing framework

This commit is contained in:
2022-01-20 16:55:11 +00:00
parent 0fa2310f39
commit 58350e032f
5 changed files with 6797 additions and 4 deletions

11
jest.config.js Normal file
View File

@@ -0,0 +1,11 @@
/*
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/configuration
*/
module.exports = {
clearMocks: true,
collectCoverage: true,
coverageDirectory: 'coverage',
coverageProvider: 'v8'
};