mirror of
https://github.com/stakwork/sphinx-relay.git
synced 2026-08-13 12:33:24 +02:00
* 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
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.ts?$': 'ts-jest',
|
|
},
|
|
transformIgnorePatterns: ['<rootDir>/node_modules/'],
|
|
collectCoverage: true,
|
|
}
|