@allurereport/plugin-progress 3.0.0-beta.3 → 3.0.0-beta.4

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/dist/plugin.js +1 -1
  2. package/package.json +5 -3
package/dist/plugin.js CHANGED
@@ -18,7 +18,7 @@ export class ProgressPlugin {
18
18
  this.options = options;
19
19
  _ProgressPlugin_terminal.set(this, void 0);
20
20
  this.start = async (context, store, realtime) => {
21
- realtime.onTestResults(async (trIds) => {
21
+ realtime.onTestResults(async () => {
22
22
  await __classPrivateFieldGet(this, _ProgressPlugin_render, "f").call(this, store);
23
23
  });
24
24
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/plugin-progress",
3
- "version": "3.0.0-beta.3",
3
+ "version": "3.0.0-beta.4",
4
4
  "description": "Allure Plugin to show generation progress in console",
5
5
  "keywords": [
6
6
  "allure",
@@ -26,11 +26,13 @@
26
26
  "scripts": {
27
27
  "build": "run clean && tsc --project ./tsconfig.json",
28
28
  "clean": "rimraf ./dist",
29
+ "eslint": "eslint ./src/**/*.{js,jsx,ts,tsx}",
30
+ "eslint:format": "eslint --fix ./src/**/*.{js,jsx,ts,tsx}",
29
31
  "test": "rimraf ./out && vitest run"
30
32
  },
31
33
  "dependencies": {
32
- "@allurereport/core-api": "3.0.0-beta.3",
33
- "@allurereport/plugin-api": "3.0.0-beta.3",
34
+ "@allurereport/core-api": "3.0.0-beta.4",
35
+ "@allurereport/plugin-api": "3.0.0-beta.4",
34
36
  "yoctocolors": "^2.1.1"
35
37
  },
36
38
  "devDependencies": {