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