You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When `manualStep` is called the test pauses and the Cyborg Test UI window appears. Use the `✅ Step passed` or `❌ Step failed` buttons to resume the test. Failing a step throws an error so your CI can detect it.
32
32
33
+
## Soft Fail for Manual Steps
34
+
35
+
You can use `manualStep.soft` to mark a manual step as a soft fail. If a soft manual step fails, the test will continue running, and the failure will be annotated as a soft fail (warning) in the report.
36
+
37
+
**Usage:**
38
+
39
+
```ts
40
+
awaitmanualStep('This is a hard manual step'); // Test fails if this step fails
41
+
awaitmanualStep.soft('This is a soft manual step'); // Test continues if this step fails, and a warning is shown
42
+
```
43
+
44
+
- Soft fails are shown as warnings in the UI and annotated in the test report.
45
+
- Use soft fails for non-critical manual verifications where you want to highlight issues but not fail the entire test.
46
+
33
47
## Analytics Configuration
34
48
35
49
The package includes Google Analytics integration that is enabled by default. The following data is collected:
0 commit comments