blob: da38f97c8d0650f69245c7b53e6e9e0a2192f882 [file]
load("@npm//:defs.bzl", "npm_link_all_packages")
load("@npm//:mocha/package_json.bzl", mocha_bin = "bin")
npm_link_all_packages(name = "node_modules")
mocha_bin.mocha_test(
name = "test",
args = ["test.js"],
data = [
# package.json is required for node to pickup the "type": "module" field
"package.json",
":test.js",
],
)