qualiteer/tests/assets/suite/secondary.js

5 lines
192 B
JavaScript
Raw Normal View History

2022-07-12 22:07:44 +00:00
export default function secondaryTest(pipelineData) {
2022-07-07 21:45:38 +00:00
console.log("This came from a secondary test!");
2022-08-06 13:13:44 +00:00
return { status: +(pipelineData !== "SomeData"), pipelineData: "SomeOtherData" };
2022-07-12 22:07:44 +00:00
}