Skip to content

Commit

Permalink
ci: log stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Mar 15, 2024
1 parent e1689cb commit 2e910fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .fluentci/src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,9 @@ export async function e2e(
.withServiceBinding("fluentci-engine", engine)
.withExec(["http", "http://fluentci-engine:6880/graphiql"]);

return ctr.stdout();
const stdout = await ctr.stdout();
console.log(stdout);
return stdout;
}

export type JobExec =
Expand Down

0 comments on commit 2e910fa

Please sign in to comment.