UNPKG
hpdf
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
0.0.1
NodeJS library for generation PDF from HTML
github.com/frimuchkov/hpdf
frimuchkov/hpdf
hpdf
/
jest.config.ts
13 lines
(10 loc)
•
231 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
type
{
Config
}
from
'jest'
;
const
config
:
Config
= {
preset
:
'ts-jest'
,
testEnvironment
:
'node'
,
forceExit
:
true
,
detectOpenHandles
:
true
,
collectCoverage
:
true
,
testRegex
:
".test.ts$"
};
export
default
config;