allure 3.0.0-beta.25 → 3.0.0-beta.27

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.
@@ -41,8 +41,8 @@ export class Allure2Command extends Command {
41
41
  reportLanguage: this.reportLanguage,
42
42
  };
43
43
  const config = await readConfig(cwd, this.config, {
44
- output: this.output ?? "allure-report",
45
- name: this.reportName ?? "Allure Report",
44
+ output: this.output,
45
+ name: this.reportName,
46
46
  knownIssuesPath: this.knownIssues,
47
47
  historyPath: this.historyPath,
48
48
  });
@@ -53,8 +53,8 @@ export class AwesomeCommand extends Command {
53
53
  groupBy: this.groupBy?.split?.(",") ?? ["parentSuite", "suite", "subSuite"],
54
54
  };
55
55
  const config = await readConfig(cwd, this.config, {
56
- output: this.output ?? "allure-report",
57
- name: this.reportName ?? "Allure Report",
56
+ output: this.output,
57
+ name: this.reportName,
58
58
  knownIssuesPath: this.knownIssues,
59
59
  historyPath: this.historyPath,
60
60
  });
@@ -41,8 +41,8 @@ export class ClassicCommand extends Command {
41
41
  reportLanguage: this.reportLanguage,
42
42
  };
43
43
  const config = await readConfig(cwd, this.config, {
44
- output: this.output ?? "allure-report",
45
- name: this.reportName ?? "Allure Report",
44
+ output: this.output,
45
+ name: this.reportName,
46
46
  knownIssuesPath: this.knownIssues,
47
47
  historyPath: this.historyPath,
48
48
  });
@@ -43,8 +43,8 @@ export class DashboardCommand extends Command {
43
43
  reportLanguage: this.reportLanguage ?? "en",
44
44
  };
45
45
  const config = await readConfig(cwd, this.config, {
46
- output: this.output ?? "allure-report",
47
- name: this.reportName ?? "Allure Report",
46
+ output: this.output,
47
+ name: this.reportName,
48
48
  });
49
49
  config.plugins = [
50
50
  {
@@ -34,7 +34,7 @@ export class GenerateCommand extends Command {
34
34
  const resultsDir = (this.resultsDir ?? "./**/allure-results").replace(/[\\/]$/, "");
35
35
  const config = await readConfig(cwd, this.config, {
36
36
  name: this.reportName,
37
- output: this.output ?? "allure-report",
37
+ output: this.output,
38
38
  });
39
39
  const stageDumpFiles = [];
40
40
  const resultsDirectories = [];
@@ -19,7 +19,7 @@ export class OpenCommand extends Command {
19
19
  });
20
20
  }
21
21
  async execute() {
22
- const config = await readConfig(this.cwd, this.config, { output: this.reportDir ?? "./allure-report" });
22
+ const config = await readConfig(this.cwd, this.config, { output: this.reportDir });
23
23
  await serve({
24
24
  port: this.port ? parseInt(this.port, 10) : undefined,
25
25
  servePath: config.output,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "allure",
3
- "version": "3.0.0-beta.25",
3
+ "version": "3.0.0-beta.27",
4
4
  "description": "Allure Commandline Tool",
5
5
  "keywords": [
6
6
  "allure",
@@ -32,25 +32,25 @@
32
32
  "test": "vitest run"
33
33
  },
34
34
  "dependencies": {
35
- "@allurereport/charts-api": "3.0.0-beta.25",
36
- "@allurereport/ci": "3.0.0-beta.25",
37
- "@allurereport/core": "3.0.0-beta.25",
38
- "@allurereport/core-api": "3.0.0-beta.25",
39
- "@allurereport/directory-watcher": "3.0.0-beta.25",
40
- "@allurereport/plugin-allure2": "3.0.0-beta.25",
41
- "@allurereport/plugin-api": "3.0.0-beta.25",
42
- "@allurereport/plugin-awesome": "3.0.0-beta.25",
43
- "@allurereport/plugin-classic": "3.0.0-beta.25",
44
- "@allurereport/plugin-csv": "3.0.0-beta.25",
45
- "@allurereport/plugin-dashboard": "3.0.0-beta.25",
46
- "@allurereport/plugin-jira": "3.0.0-beta.25",
47
- "@allurereport/plugin-log": "3.0.0-beta.25",
48
- "@allurereport/plugin-progress": "3.0.0-beta.25",
49
- "@allurereport/plugin-server-reload": "3.0.0-beta.25",
50
- "@allurereport/plugin-slack": "3.0.0-beta.25",
51
- "@allurereport/reader-api": "3.0.0-beta.25",
52
- "@allurereport/service": "3.0.0-beta.25",
53
- "@allurereport/static-server": "3.0.0-beta.25",
35
+ "@allurereport/charts-api": "3.0.0-beta.27",
36
+ "@allurereport/ci": "3.0.0-beta.27",
37
+ "@allurereport/core": "3.0.0-beta.27",
38
+ "@allurereport/core-api": "3.0.0-beta.27",
39
+ "@allurereport/directory-watcher": "3.0.0-beta.27",
40
+ "@allurereport/plugin-allure2": "3.0.0-beta.27",
41
+ "@allurereport/plugin-api": "3.0.0-beta.27",
42
+ "@allurereport/plugin-awesome": "3.0.0-beta.27",
43
+ "@allurereport/plugin-classic": "3.0.0-beta.27",
44
+ "@allurereport/plugin-csv": "3.0.0-beta.27",
45
+ "@allurereport/plugin-dashboard": "3.0.0-beta.27",
46
+ "@allurereport/plugin-jira": "3.0.0-beta.27",
47
+ "@allurereport/plugin-log": "3.0.0-beta.27",
48
+ "@allurereport/plugin-progress": "3.0.0-beta.27",
49
+ "@allurereport/plugin-server-reload": "3.0.0-beta.27",
50
+ "@allurereport/plugin-slack": "3.0.0-beta.27",
51
+ "@allurereport/reader-api": "3.0.0-beta.27",
52
+ "@allurereport/service": "3.0.0-beta.27",
53
+ "@allurereport/static-server": "3.0.0-beta.27",
54
54
  "adm-zip": "^0.5.16",
55
55
  "clipanion": "^4.0.0-rc.4",
56
56
  "glob": "^11.1.0",