@allurereport/reader 3.0.0-beta.10 → 3.0.0-beta.11

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.
@@ -2,7 +2,7 @@ import console from "node:console";
2
2
  import { invokeCliTool, invokeJsonCliTool, invokeStdoutCliTool, invokeTextStdoutCliTool } from "../../toolRunner.js";
3
3
  export const xcrunJson = async (utilityName, ...args) => {
4
4
  try {
5
- return await invokeJsonCliTool("xcrun", [utilityName, ...args], { timeout: 1000 });
5
+ return await invokeJsonCliTool("xcrun", [utilityName, ...args], { timeout: 10000 });
6
6
  }
7
7
  catch (e) {
8
8
  console.error(e);
@@ -23,7 +23,7 @@ export const xcrunBinary = async (utilityName, ...args) => {
23
23
  export const xcresulttool = async (...args) => await xcrunJson("xcresulttool", ...args);
24
24
  export const xcresulttoolBinary = async (...args) => await xcrunBinary("xcresulttool", ...args);
25
25
  export const version = async () => {
26
- const stdout = invokeTextStdoutCliTool("xcrun", ["xcresulttool", "version"], { timeout: 1000 });
26
+ const stdout = invokeTextStdoutCliTool("xcrun", ["xcresulttool", "version"], { timeout: 10000 });
27
27
  const lines = [];
28
28
  for await (const line of stdout) {
29
29
  lines.push(line);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/reader",
3
- "version": "3.0.0-beta.10",
3
+ "version": "3.0.0-beta.11",
4
4
  "description": "Collection of utilities which helps to process different kind of test results as Allure Results",
5
5
  "keywords": [
6
6
  "allure",
@@ -26,9 +26,9 @@
26
26
  "test": "vitest run"
27
27
  },
28
28
  "dependencies": {
29
- "@allurereport/core-api": "3.0.0-beta.10",
30
- "@allurereport/plugin-api": "3.0.0-beta.10",
31
- "@allurereport/reader-api": "3.0.0-beta.10",
29
+ "@allurereport/core-api": "3.0.0-beta.11",
30
+ "@allurereport/plugin-api": "3.0.0-beta.11",
31
+ "@allurereport/reader-api": "3.0.0-beta.11",
32
32
  "fast-xml-parser": "^4.5.0"
33
33
  },
34
34
  "devDependencies": {