Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
devtools
/
node_modules
/
resolve
/
test
/
nonstring.js
blob: ef63c40f9393dc63219d5e3debb7ed6db175c455 [
file
] [
log
] [
blame
]
var
test
=
require
(
'tape'
);
var
resolve
=
require
(
'../'
);
test
(
'nonstring'
,
function
(
t
)
{
t
.
plan
(
1
);
resolve
(
555
,
function
(
err
,
res
,
pkg
)
{
t
.
ok
(
err
);
});
});