We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a213a6 commit f6fff71Copy full SHA for f6fff71
README.md
@@ -1,5 +1,5 @@
1
<table><tr>
2
-<td><img src="https://github.com/pubref/rules_protobuf/blob/master/images/bazel.png" width="120"/></td>
+<td><img src="https://bazel.build/images/bazel-icon.svg" width="120"/></td>
3
<td><img src="https://nodejs.org/static/images/logo.svg" width="120"/></td>
4
</tr><tr>
5
<td>Bazel</td>
@@ -187,3 +187,15 @@ mocha_test(
187
]
188
)
189
```
190
+
191
+> Note: to use the mocha_test rules, you'll need to add npm_mocha as a
192
+> dependency in your `WORKSPACE` file:
193
194
+```
195
+npm_repository(
196
+ name = "npm_mocha",
197
+ deps = {
198
+ "mocha": "3.5.0", # update as needed
199
+ },
200
+)
201
0 commit comments