aboutsummaryrefslogtreecommitdiff
path: root/src/formats.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/formats.ts')
-rw-r--r--src/formats.ts2
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;