Fixed display and failing pipeline
This commit is contained in:
parent
b7f953e93d
commit
90d9bc3fcc
8 changed files with 119 additions and 33 deletions
|
@ -31,6 +31,7 @@ const liveIndicator = () => {
|
|||
};
|
||||
|
||||
const runTests = () => {
|
||||
console.log(pipeline);
|
||||
switch (test) {
|
||||
case "primary":
|
||||
return primary();
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
export default function secondaryTest(pipelineData) {
|
||||
console.log("This came from a secondary2 test!");
|
||||
console.log(pipelineData, "SomeData");
|
||||
return {
|
||||
status: +(pipelineData !== "SomeData"),
|
||||
pipelineData: "SomeOtherOtherData",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
export default function secondaryTest(pipelineData) {
|
||||
console.log("This came from a tertiary3!");
|
||||
return { status: +(pipelineData !== "SomeOtherData") };
|
||||
return { status: +(pipelineData !== "SomeOtherOtherData") };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue