Sign in
pigweed
/
third_party
/
github
/
aspect-build
/
rules_js
/
HEAD
/
.
/
examples
/
macro
/
test.js
blob: ec3591f22257f2e7051ddcf8abcd9fad494fa254 [
file
] [
log
] [
blame
]
const
assert
=
require
(
'assert'
)
describe
(
'mocha'
,
()
=>
{
it
(
'integrates with Bazel'
,
()
=>
{
assert
(
true
)
})
it
(
'is in bazel-out'
,
()
=>
{
assert
.
match
(
__dirname
,
/bazel-out/
)
})
})