Sign in
◑
Theme
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
a6281f73792d17271be862be6d32694a543bccda
/
.
/
internal
/
npm_install
/
test
/
coarse.spec.js
blob: 11ceecef13566295b23ac99d66dca738a569b566 [
file
]
describe
(
'dependencies'
,
()
=>
{
it
(
'it should resolve test-a@0.0.4 which is under node_modules/test-a'
,
()
=>
{
const
testA
=
require
(
'@gregmagolan/test-a'
);
expect
(
testA
).
toEqual
(
'test-a-0.0.4'
);
});
});