Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
bbbc8db711d3dd2d6474c46c4e6501f3efc453ff
/
.
/
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
();
})