qa360 1.3.1 → 1.3.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.
@@ -42,15 +42,17 @@ security:
42
42
  dast:
43
43
  max_high: 5
44
44
 
45
- # Docker Compose integration
46
- hooks:
47
- beforeAll:
48
- - compose: up
49
- timeout: 30000
50
- - wait_on: http://localhost:3000
51
-
52
- afterAll:
53
- - compose: down
45
+ # Docker Compose integration (optional - remove if not using Docker)
46
+ # hooks:
47
+ # beforeAll:
48
+ # - run: "docker compose up -d"
49
+ # timeout: 30000
50
+ # - run: "npx wait-on http://localhost:3000"
51
+ # timeout: 30000
52
+ #
53
+ # afterAll:
54
+ # - run: "docker compose down"
55
+ # timeout: 30000
54
56
 
55
57
  # Execution settings
56
58
  execution:
@@ -26,15 +26,17 @@ targets:
26
26
  budgets:
27
27
  perf_p95_ms: 2000 # P95 latency must be < 2000ms
28
28
 
29
- # Hooks for local development
30
- hooks:
31
- beforeAll:
32
- - compose: up
33
- timeout: 30000
34
- - wait_on: http://localhost:3000
35
-
36
- afterAll:
37
- - compose: down
29
+ # Hooks for local development (optional - remove if not using Docker)
30
+ # hooks:
31
+ # beforeAll:
32
+ # - run: "docker compose up -d"
33
+ # timeout: 30000
34
+ # - run: "npx wait-on http://localhost:3000"
35
+ # timeout: 30000
36
+ #
37
+ # afterAll:
38
+ # - run: "docker compose down"
39
+ # timeout: 30000
38
40
 
39
41
  execution:
40
42
  timeout: 60000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qa360",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "QA360 Proof CLI - Quality as Cryptographic Proof",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",