Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
2bff74db717c31b70cfbd585eccbbe050abcd0ee
/
.
/
internal
/
node
/
test
/
chdir
/
test.js
blob: 5a0f9220026faffc761c821a4f7acda04afd2886 [
file
]
const
{
readFileSync
}
=
require
(
'fs'
);
const
assert
=
require
(
'assert'
);
// this test should be run in a working directory with
// that file in it
assert
.
equal
(
'console.log("hello world")'
,
readFileSync
(
'build/app.js'
,
'utf-8'
));