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
/
Methods.test.ts
8 lines
(6 loc)
•
178 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
METHODS
}
from
'../../src/Methods'
;
describe
(
'Methods'
,
() =>
{
test
(
'Expect METHODS to match the snapshot'
,
() =>
{
expect
(
METHODS
).
toMatchSnapshot
(); }); });