removed jest testing framework and used mocha/chai instead which does not interfere with the regular build process
parent
758d774258
commit
9a282bc982
@ -1,6 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
transform: {'^.+\.ts?$': 'ts-jest'},
|
|
||||||
testEnvironment: 'node',
|
|
||||||
testRegex: '/tests/.*\.(ts|tsx)$',
|
|
||||||
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node']
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,5 @@
|
|||||||
|
describe('default', ()=>{
|
||||||
|
it('print', ()=>{
|
||||||
|
console.log("okay?")
|
||||||
|
})
|
||||||
|
})
|
||||||
Loading…
Reference in New Issue