qualiteer/tests/assets/suite/secondary2.js

9 lines
249 B
JavaScript
Raw Normal View History

2022-08-09 04:29:10 +00:00
export default function secondaryTest(pipelineData) {
console.log("This came from a secondary2 test!");
2022-08-10 11:00:22 +00:00
console.log(pipelineData, "SomeData");
2022-08-09 04:29:10 +00:00
return {
status: +(pipelineData !== "SomeData"),
pipelineData: "SomeOtherOtherData",
};
}