@empiricalrun/test-gen 0.4.0 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @empiricalrun/test-gen
2
2
 
3
+ ## 0.4.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 2b3a59c: chore: more line breaks in ci report
8
+
9
+ ## 0.4.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 51294b4: fix: indentation of the ci summary
14
+
3
15
  ## 0.4.0
4
16
 
5
17
  ### Minor Changes
@@ -9,7 +9,7 @@ async function reportOnCI(scenarios) {
9
9
  if (process.env.CI && process.env.GITHUB_OUTPUT) {
10
10
  const testNames = scenarios.map((s) => s.name).join(" ");
11
11
  const scenariosOutput = scenarios.map((s) => {
12
- return `${s.name} \nSteps: \n${s.steps.join("\n")} \nAssert: \n${s.assert}\n`;
12
+ return `**Scenario:** ${s.name} \n\n**Steps:**\n - ${s.steps.join("\n - ")} \n\n**Assert**:\n - ${s.assert}\n\n ----`;
13
13
  }).join("\n ----- \n");
14
14
  const envVars = [
15
15
  `summary<<EOF\n${scenariosOutput}\nEOF`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/test-gen",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"