ffortier
ffortier
I've run in this issue. Here's my workaround: ``` javascript jasmine.Clock.useMock(); // issue with clearTimeout/clearInterval: https://github.com/mhevery/jasmine-node/issues/276 spyOn(global, 'clearTimeout').andCallFake(function() { return jasmine.Clock.installed.clearTimeout.apply(this, arguments); }); spyOn(global, 'clearInterval').andCallFake(function() { return jasmine.Clock.installed.clearInterval.apply(this, arguments); });...
As a workaround, I've also made my own bazel rules for opa that seems to be working: https://github.com/ticketmaster/rules_opa.
Outsider comment here, but what about using [rules_shell's toolchain](https://github.com/bazelbuild/rules_shell). It has a `path` attribute that follows the same bazel logic used for `sh_binary`. You can mark it as optional and...