agents-cli-automation 1.0.17 → 1.0.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agents-cli-automation",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "Agents CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -124,6 +124,12 @@ export const bdd = defineBddConfig({
124
124
  steps: ['tests/fixtures/**/*.ts', 'tests/steps/**/*.ts'],
125
125
  outputDir: 'tests',
126
126
  });
127
+
128
+ ## Notes on Reporters (update)
129
+
130
+ - The Playwright config uses the singular `reporter` property (not `reporters`).
131
+ - Example reporter config added in the repo: `['list']`, `['html', { open: 'never' }]`, and `['junit', { outputFile: 'results/junit.xml' }]`.
132
+ - A TypeScript check (`npx tsc --noEmit`) was run and passed after this fix.
127
133
  ```
128
134
 
129
135
  **Important**: Include `tests/fixtures/**/*.ts` **before** `tests/steps/**/*.ts` in the `steps` pattern so fixtures are loaded first and available to step definitions.