form-tester 0.4.1 → 0.4.2

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.
Files changed (2) hide show
  1. package/form-tester.js +3 -3
  2. package/package.json +1 -1
package/form-tester.js CHANGED
@@ -4,9 +4,9 @@ const path = require("path");
4
4
  const readline = require("readline");
5
5
  const { spawn, execSync } = require("child_process");
6
6
 
7
- const CONFIG_PATH = path.join(__dirname, "form-tester.config.json");
8
- const OUTPUT_BASE = path.resolve(__dirname, "output");
9
- const LOCAL_VERSION = "0.4.1";
7
+ const CONFIG_PATH = path.join(process.cwd(), "form-tester.config.json");
8
+ const OUTPUT_BASE = path.resolve(process.cwd(), "output");
9
+ const LOCAL_VERSION = "0.4.2";
10
10
  const RECOMMENDED_PERSON = "Uromantisk Direktør";
11
11
 
12
12
  const PERSONAS = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "form-tester",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
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": {