@argos-ci/playwright 6.0.4 → 6.1.0

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/dist/index.js CHANGED
@@ -120,7 +120,8 @@ async function getTestMetadata(testInfo) {
120
120
  file: resolveTestFilePath(testInfo.file, repositoryPath),
121
121
  line: testInfo.line,
122
122
  column: testInfo.column
123
- }
123
+ },
124
+ annotations: testInfo.annotations
124
125
  };
125
126
  return testMetadata;
126
127
  }
package/dist/reporter.js CHANGED
@@ -103,7 +103,8 @@ async function getTestMetadataFromTestCase(testCase, testResult) {
103
103
  file: repositoryPath ? relative(repositoryPath, testCase.location.file) : testCase.location.file,
104
104
  line: testCase.location.line,
105
105
  column: testCase.location.column
106
- }
106
+ },
107
+ annotations: testCase.annotations
107
108
  };
108
109
  return testMetadata;
109
110
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@argos-ci/playwright",
3
3
  "description": "Playwright SDK for visual testing with Argos.",
4
- "version": "6.0.4",
4
+ "version": "6.1.0",
5
5
  "author": "Smooth Code",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -48,8 +48,8 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@argos-ci/browser": "5.0.0",
51
- "@argos-ci/core": "4.0.2",
52
- "@argos-ci/util": "3.0.0",
51
+ "@argos-ci/core": "4.0.3",
52
+ "@argos-ci/util": "3.1.0",
53
53
  "chalk": "^5.4.1",
54
54
  "debug": "^4.4.0"
55
55
  },
@@ -67,5 +67,5 @@
67
67
  "check-format": "prettier --check --ignore-unknown --ignore-path=../../.gitignore --ignore-path=../../.prettierignore .",
68
68
  "lint": "eslint ."
69
69
  },
70
- "gitHead": "7a4fac1862698b69ad47fa0c58e1fa5c13d6686f"
70
+ "gitHead": "dfad527145f58037c1991c2a85ad8cdc0d8a1a3f"
71
71
  }