Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_nodejs
/
a4bebf2d2da13d93e08e75bd720e2dff8a3a3afe
/
.
/
e2e
/
webapp
/
test.js
blob: d986b891e8a8000c8c95ccba9388fb8071814bb4 [
file
]
const
fs
=
require
(
'fs'
);
const
content
=
fs
.
readFileSync
(
require
.
resolve
(
__dirname
+
'/out.min/app.js'
),
'utf-8'
);
if
(
content
.
indexOf
(
'import("./strings'
)
<
0
)
{
console
.
error
(
content
);
process
.
exitCode
=
1
;
}