4 lines
192 B
JavaScript
4 lines
192 B
JavaScript
export default function secondaryTest(pipelineData) {
|
|
console.log("This came from a secondary test!");
|
|
return { status: +(pipelineData !== "SomeData"), pipelineData: "SomeOtherData" };
|
|
}
|