Skip to content

Commit f58083f

Browse files
committed
Changed debug spec print to be yaml instead of json
This will help recreating the issue since it will be possible to copy-paste the test setup... apart from the toml bit, that needs to be manually converted still
1 parent a268124 commit f58083f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/job.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
TestEnv,
1010
} from "../src/index.ts";
1111
import { LogSniff } from "../src/log.ts";
12+
import { stringify } from "jsr:@std/yaml";
1213

1314
/**
1415
* Tests in this file are separate to allow them to run in parallell
@@ -39,7 +40,7 @@ async function performTest(
3940
spec.appYaml.locality = {
4041
regions: ["be-mons"],
4142
};
42-
console.debug(JSON.stringify(spec, null, " "));
43+
console.debug(stringify(spec));
4344
deployedApp = await env.deployApp(spec);
4445
});
4546

0 commit comments

Comments
 (0)