apipost-cli 1.0.7 → 1.0.8

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.
Files changed (2) hide show
  1. package/bin/template.js +1 -1
  2. package/package.json +1 -1
package/bin/template.js CHANGED
@@ -463,7 +463,7 @@ const RENDER_TEST_REPORT_HTML_STR = (data = {}) => {
463
463
  {{each value.logList item key}}
464
464
  <div data-text="{{key}}" id="{{key}}" class="test-event-item">
465
465
  <div class="panel">
466
- {{if item.http_error === -1 && && item.assert_error === -1}}
466
+ {{if item.http_error === -1 && item.assert_error === -1}}
467
467
  <img class="status" src="https://img.cdn.apipost.cn/cdn/test-report/img/success.png" alt="" />
468
468
  {{/if}} {{if item.http_error === 1 || item.assert_error === 1}}
469
469
  <img class="status" src="https://img.cdn.apipost.cn/cdn/test-report/img/error.png" alt="" />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apipost-cli",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Apipost 命令行运行工具",
5
5
  "main": "bin/cli.js",
6
6
  "scripts": {