Resolving ts errors

This commit is contained in:
Milutin Savovic
2018-05-10 15:35:27 +02:00
parent 050c3185e1
commit b42158d8a7
2 changed files with 3 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ ${test.err}`,
);
return;
}
let executionDateTime = moment().format('MMM Do YYYY, HH:mm')
let executionDateTime = moment().format('MMM Do YYYY, HH:mm');
let total = this.passes + this.fails + this.pending;
let name = `${reporterOptions.runName || 'Automated test run'} ${executionDateTime}`;
let description = `Automated test run executed on ${executionDateTime}

View File

@@ -10,7 +10,8 @@
"noImplicitAny": false,
"pretty": true,
"outDir": "dist",
"typeRoots": ["node_modules/@types"]
"typeRoots": ["node_modules/@types"],
"lib": [ "es2017", "dom" ]
},
"exclude": [
"node_modules",