UNPKG
jest-node-http
Version:
latest (1.0.0)
1.0.0
jest mock
github.com/jameswlane/jest-node-http
jameswlane/jest-node-http
jest-node-http
/
test
/
unit
/
StatusCodes.test.ts
8 lines
(6 loc)
•
202 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
STATUS_CODES
}
from
'../../src/StatusCodes'
;
describe
(
'Status Codes'
,
() =>
{
test
(
'Expect STATUS_CODES to match the snapshot'
,
() =>
{
expect
(
STATUS_CODES
).
toMatchSnapshot
(); }); });