@empiricalrun/test-gen 0.16.12 → 0.16.13

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,11 @@
1
1
  # @empiricalrun/test-gen
2
2
 
3
+ ## 0.16.13
4
+
5
+ ### Patch Changes
6
+
7
+ - fd6c8c5: fix: remove asserts from github description
8
+
3
9
  ## 0.16.12
4
10
 
5
11
  ### Patch Changes
@@ -1 +1 @@
1
- {"version":3,"file":"ci.d.ts","sourceRoot":"","sources":["../../src/reporter/ci.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEpC,wBAAsB,UAAU,CAAC,SAAS,EAAE,QAAQ,EAAE,uBAgBrD"}
1
+ {"version":3,"file":"ci.d.ts","sourceRoot":"","sources":["../../src/reporter/ci.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AAEpC,wBAAsB,UAAU,CAAC,SAAS,EAAE,QAAQ,EAAE,uBAYrD"}
@@ -26,17 +26,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.reportOnCI = void 0;
27
27
  const core = __importStar(require("@actions/core"));
28
28
  async function reportOnCI(scenarios) {
29
- console.log("reportOnCI");
30
- console.log("scenarios", JSON.stringify(scenarios, null, 2));
31
- if ("true" && "/home/runner/work/_temp/_runner_file_commands/set_output_b6c7d510-b621-4566-8d08-029d47d3d4c7") {
29
+ if ("true") {
32
30
  const testNames = scenarios.map((s) => s.name).join(" ");
33
31
  const scenariosOutput = scenarios
34
32
  .map((s) => {
35
- return `**Scenario:** ${s.name} \n\n**Steps:**\n - ${s.steps.join("\n - ")} \n\n**Assert**:\n - ${s.assert}\n\n ----`;
33
+ return `**Scenario:** ${s.name} \n\n**Steps:**\n - ${s.steps.join("\n - ")}`;
36
34
  })
37
35
  .join("\n ----- \n");
38
- console.log("scenariosOutput", scenariosOutput);
39
- console.log("testNames", testNames);
40
36
  core.setOutput("summary", scenariosOutput);
41
37
  core.setOutput("test_names", testNames);
42
38
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/test-gen",
3
- "version": "0.16.12",
3
+ "version": "0.16.13",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"