File tree Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 1+ export * from '../dist/api/test' // eslint-disable-line import/export
Original file line number Diff line number Diff line change 1+ module . exports = require ( './dist/api/test' )
Original file line number Diff line number Diff line change 1+ import * as utilsExports from 'ts-jest/utils'
2+ import * as testExports from '../test' // eslint-disable-line import/namespace
3+
4+ describe ( 're-exporting ts-jest utils' , ( ) => {
5+ test . each ( Object . entries ( utilsExports ) . filter ( ( [ key ] ) => key !== 'default' ) ) (
6+ 'forwards `%s` export' ,
7+ ( exportName , exportValue ) => {
8+ expect ( testExports ) . toHaveProperty ( exportName , exportValue )
9+ } ,
10+ )
11+ } )
Original file line number Diff line number Diff line change 1+ export * from 'ts-jest/utils'
You can’t perform that action at this time.
0 commit comments