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