diff options
Diffstat (limited to 'src/formats.ts')
| -rw-r--r-- | src/formats.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/formats.ts b/src/formats.ts index b64c418..8de55b1 100644 --- a/src/formats.ts +++ b/src/formats.ts @@ -47,7 +47,7 @@ const FormatsObj: FormatObj = { tarpaulin: { parseCoverage: (file: Document): CoverageResult => { const scripts = file.getElementsByTagName("script"); - if (scripts.length == 0) { + if (scripts.length === 0) { return new InvalidReportDocumentError(); } const data = scripts[0].text; |
