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.
- package/examples/complete.yml +11 -9
- package/examples/fullstack.yml +11 -9
- package/package.json +1 -1
package/examples/complete.yml
CHANGED
|
@@ -42,15 +42,17 @@ security:
|
|
|
42
42
|
dast:
|
|
43
43
|
max_high: 5
|
|
44
44
|
|
|
45
|
-
# Docker Compose integration
|
|
46
|
-
hooks:
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
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:
|
package/examples/fullstack.yml
CHANGED
|
@@ -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
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|