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 533c497 commit 0862e32Copy full SHA for 0862e32
test/examples/params.example.ts
@@ -42,7 +42,9 @@ describe("Param setting", function () {
42
await vi.waitFor(() => expect(callback).toHaveBeenCalledWith(false));
43
});
44
45
- it("ros.getParams", async () => {
+ // Known issue with getting params being able to hang in Humble because it had no timeout.
46
+ // This doesn't even work with `ros2 param list` at the CLI in our test environment :(
47
+ it.skipIf(process.env.ROS_DISTRO === "humble")("ros.getParams", async () => {
48
const callback = vi.fn();
49
ros.getParams(callback);
50
await vi.waitFor(() => {
0 commit comments