diff --git a/__test__/main.test.ts b/__test__/main.test.ts index 8c702b070..26e527f2f 100644 --- a/__test__/main.test.ts +++ b/__test__/main.test.ts @@ -2,6 +2,7 @@ import * as core from "@actions/core"; import * as actions_exec from "@actions/exec"; import * as ubuntu from "../src/setup-ros-ubuntu"; +import * as rhel from "../src/setup-ros-rhel"; import * as osx from "../src/setup-ros-osx"; import * as windows from "../src/setup-ros-windows"; @@ -20,6 +21,10 @@ describe("basic workflow tests", () => { await expect(ubuntu.runLinux()).resolves.not.toThrow(); }); + it("run RHEL workflow", async () => { + await expect(rhel.runLinux()).resolves.not.toThrow(); + }); + it("run Windows workflow", async () => { await expect(windows.runWindows()).resolves.not.toThrow(); }); @@ -43,6 +48,10 @@ describe("required-ros-distributions/noetic workflow tests", () => { await expect(ubuntu.runLinux()).resolves.not.toThrow(); }); + it("run RHEL workflow", async () => { + await expect(rhel.runLinux()).resolves.not.toThrow(); + }); + it("run Windows workflow", async () => { await expect(windows.runWindows()).resolves.not.toThrow(); });