import {render} from "ink-testing-library" import React from "react" import stripAnsi from "strip-ansi" import {Commit as PrintMessageExecutor} from "../../src/executors/print-message-executor" describe("Executor", () => { const executorConfig = { stepId: "printMessage", stepName: "Print message", stepType: "print-message", explanation: "Testing text for a print message", message: "My message", } it("should render PrintMessageExecutor", () => { const {lastFrame} = render( {}} step={executorConfig} />, ) expect(stripAnsi(lastFrame())).toMatchSnapshot() }) it("should contain a step name and explanation", () => { const {frames} = render( {}} step={executorConfig} />, ) expect(frames[0].includes("My message")).toBeTruthy() }) })