Skip to content

Commit 0862e32

Browse files
committed
Skip getParams test on Humble due to upstream bug
1 parent 533c497 commit 0862e32

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/examples/params.example.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ describe("Param setting", function () {
4242
await vi.waitFor(() => expect(callback).toHaveBeenCalledWith(false));
4343
});
4444

45-
it("ros.getParams", async () => {
45+
// 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 () => {
4648
const callback = vi.fn();
4749
ros.getParams(callback);
4850
await vi.waitFor(() => {

0 commit comments

Comments
 (0)