sphinx-relay/jest.config.js
kevkevin 905717edb8
Unit tests (Jest) (#411)
* adding unit testing to the node project

* added to git workflow

* added some more coverage and updated workflow so the label is correct

* added some more coverage and updated workflow so the label is correct

* remove unused dependency

* added new test file for json
2022-08-23 11:56:03 -06:00

9 lines
199 B
JavaScript

module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
transform: {
'^.+\\.ts?$': 'ts-jest',
},
transformIgnorePatterns: ['<rootDir>/node_modules/'],
collectCoverage: true,
}