Skip to content

Commit 96623cb

Browse files
committed
fix(CI): rename lcov file
1 parent f883c4a commit 96623cb

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.betterer.results

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,19 @@
22
exports[`stricter compilation`] = {
33
timestamp: 1619240872304,
44
value: `{
5+
"node_modules/@types/jasmine/index.d.ts:2472745569": [
6+
[669, 14, 16, "Interface \'FunctionMatchers<Fn>\' incorrectly extends interface \'Matchers<any>\'.\\n The types returned by \'toHaveBeenCalledWith(...)\' are incompatible between these types.\\n Type \'boolean\' is not assignable to type \'Promise<void>\'.", "2718731728"]
7+
],
58
"src/app/google-charts.service.ts:1308226900": [
6-
[3, 29, 15, "Could not find a declaration file for module \'google-charts\'. \'./node_modules/google-charts/dist/googleCharts.js\' implicitly has an \'any\' type.\\n Try \`npm install @types/google-charts\` if it exists or add a new declaration (.d.ts) file containing \`declare module \'google-charts\';\`", "2535818334"]
9+
[3, 29, 15, "Could not find a declaration file for module \'google-charts\'. \'./node_modules/google-charts/dist/googleCharts.js\' implicitly has an \'any\' type.\\n Try \`npm i --save-dev @types/google-charts\` if it exists or add a new declaration (.d.ts) file containing \`declare module \'google-charts\';\`", "2535818334"]
710
],
811
"src/app/multiple-worker-pool/log-line/log-line.component.ts:1269916813": [
912
[10, 11, 7, "Property \'message\' has no initializer and is not definitely assigned in the constructor.", "1236122734"],
1013
[11, 11, 5, "Property \'files\' has no initializer and is not definitely assigned in the constructor.", "171232592"],
1114
[13, 9, 5, "Property \'color\' has no initializer and is not definitely assigned in the constructor.", "176948952"],
1215
[18, 44, 17, "Argument of type \'string | undefined\' is not assignable to parameter of type \'string\'.\\n Type \'undefined\' is not assignable to type \'string\'.", "463397358"]
1316
],
14-
"src/app/multiple-worker-pool/multiple-worker-pool.component.ts:1042385498": [
17+
"src/app/multiple-worker-pool/multiple-worker-pool.component.ts:816086637": [
1518
[90, 9, 14, "Type \'Observable<{ millisSinceLast: number | null; file?: string | undefined; timestamp: Date; message: string; thread: Thread; fileEventType: FileHashEvent | null; }[]>\' is not assignable to type \'Observable<HashWorkerMessage[]>\'.\\n Type \'{ millisSinceLast: number | null; file?: string | undefined; timestamp: Date; message: string; thread: Thread; fileEventType: FileHashEvent | null; }[]\' is not assignable to type \'HashWorkerMessage[]\'.\\n Type \'{ millisSinceLast: number | null; file?: string | undefined; timestamp: Date; message: string; thread: Thread; fileEventType: FileHashEvent | null; }\' is not assignable to type \'HashWorkerMessage\'.\\n Types of property \'millisSinceLast\' are incompatible.\\n Type \'number | null\' is not assignable to type \'number | undefined\'.\\n Type \'null\' is not assignable to type \'number | undefined\'.", "463576723"]
1619
]
1720
}`

karma.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = function (config) {
2626
// reporters supporting the `file` property, use `subdir` to directly
2727
// output them in the `dir` directory
2828
// { type: 'cobertura', subdir: '.', file: 'cobertura.txt' },
29-
{ type: 'lcovonly', subdir: '.', file: 'report-lcovonly.txt' },
29+
{ type: 'lcovonly', subdir: '.', file: 'lcov.info' },
3030
// { type: 'teamcity', subdir: '.', file: 'teamcity.txt' },
3131
// { type: 'text', subdir: '.', file: 'text.txt' },
3232
{ type: 'text-summary', subdir: '.', file: 'text-summary.txt' },

projects/observable-webworker/karma.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module.exports = function (config) {
3131
// reporters supporting the `file` property, use `subdir` to directly
3232
// output them in the `dir` directory
3333
// { type: 'cobertura', subdir: '.', file: 'cobertura.txt' },
34-
{ type: 'lcovonly', subdir: '.', file: 'report-lcovonly.txt' },
34+
{ type: 'lcovonly', subdir: '.', file: 'lcov.info' },
3535
// { type: 'teamcity', subdir: '.', file: 'teamcity.txt' },
3636
// { type: 'text', subdir: '.', file: 'text.txt' },
3737
{ type: 'text-summary', subdir: '.', file: 'text-summary.txt' },

0 commit comments

Comments
 (0)