@appliqation/automation-sdk 2.3.1 → 2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appliqation/automation-sdk",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Appliqation Automation SDK with API key authentication, custom run titles, and framework-specific reporters",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -546,11 +546,11 @@ class AppliqationReporter {
546
546
  this.trackResult(runInfo.runId, testResult);
547
547
 
548
548
  // Update counters
549
- if (testResult.status === 'passed') {
549
+ if (testResult.status === 'Pass') {
550
550
  this.passedTests++;
551
- } else if (testResult.status === 'failed') {
551
+ } else if (testResult.status === 'Fail') {
552
552
  this.failedTests++;
553
- } else if (testResult.status === 'skipped') {
553
+ } else if (testResult.status === 'Skipped') {
554
554
  this.skippedTests++;
555
555
  }
556
556