form-tester 0.3.0 → 0.3.1
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/README.md +1 -5
- package/form-tester.js +1 -1
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -17,12 +17,8 @@ This installs skill files into your project:
|
|
|
17
17
|
## Prerequisites
|
|
18
18
|
|
|
19
19
|
- Node.js 18+
|
|
20
|
-
- [Playwright CLI](https://www.npmjs.com/package/@playwright/cli)
|
|
21
20
|
|
|
22
|
-
|
|
23
|
-
npm install -g @playwright/cli@latest
|
|
24
|
-
playwright-cli install --skills
|
|
25
|
-
```
|
|
21
|
+
Playwright CLI is included as a dependency — no separate install needed.
|
|
26
22
|
|
|
27
23
|
## Configuration
|
|
28
24
|
|
package/form-tester.js
CHANGED
|
@@ -6,7 +6,7 @@ const { spawn, execSync } = require("child_process");
|
|
|
6
6
|
|
|
7
7
|
const CONFIG_PATH = path.join(__dirname, "form-tester.config.json");
|
|
8
8
|
const OUTPUT_BASE = path.resolve(__dirname, "output");
|
|
9
|
-
const LOCAL_VERSION = "0.3.
|
|
9
|
+
const LOCAL_VERSION = "0.3.1";
|
|
10
10
|
const RECOMMENDED_PERSON = "Uromantisk Direktør";
|
|
11
11
|
|
|
12
12
|
const PERSONAS = [
|
package/package.json
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "form-tester",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "AI-powered form testing skill for /skjemautfyller forms using Playwright CLI. Works with Claude Code and GitHub Copilot.",
|
|
5
5
|
"main": "form-tester.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"form-tester": "./form-tester.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"test": "node --test tests/form-tester.test.js"
|
|
11
|
-
|
|
10
|
+
"test": "node --test tests/form-tester.test.js"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@playwright/cli": "^0.1.1"
|
|
12
14
|
},
|
|
13
15
|
"keywords": [
|
|
14
16
|
"form-testing",
|