We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c5c9ad commit 34abc2dCopy full SHA for 34abc2d
packages/cli/src/reporters/json.ts
@@ -3,7 +3,7 @@ import * as path from 'path'
3
4
import AbstractListReporter, { checkFilesMap } from './abstract-list'
5
import { CheckRunId } from '../services/abstract-check-runner'
6
-import { formatDuration, printLn, getTestSessionUrl } from './util'
+import { printLn, getTestSessionUrl } from './util'
7
8
const outputFile = './checkly-json-report.json'
9
@@ -45,7 +45,7 @@ export class JsonBuilder {
45
result: result.hasFailures ? 'Fail' : 'Pass',
46
name: result.name,
47
checkType: result.checkType,
48
- durationMilliseconds: result.responseTime,
+ durationMilliseconds: result.responseTime ?? null,
49
filename: null,
50
link: null,
51
}
0 commit comments