Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
90408ec70b34b0f39b65d12d2bb79b6e60c0d324
/
.
/
examples
/
vue
/
smoke.test.js
blob: 3a049378b970ff3b74afa08631189f780728b7a7 [
file
]
const
assert
=
require
(
'assert'
);
const
fs
=
require
(
'fs'
);
const
path
=
require
(
'path'
);
process
.
chdir
(
path
.
join
(
__dirname
,
'dist'
));
assert
.
ok
(
fs
.
readFileSync
(
'index.html'
,
'utf-8'
).
match
(
/href=\/js\/app/
));