Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
b0fddaeedff9d53619367ecf0387085c2442a2d7
/
.
/
examples
/
jest
/
index.test.js
blob: 8e3124654ed1630a882720d53c58ab364b32378d [
file
]
import
indexfile from
'./index.js'
;
test
(
'it should work'
,
()
=>
{
expect
(
indexfile
).
toBe
(
'test'
);
});
test
(
'snapshot'
,
function
()
{
expect
(
indexfile
).
toMatchSnapshot
();
})