We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb8a32d commit 3ac0d9fCopy full SHA for 3ac0d9f
buildAndReleaseTask/models/CoverageModel.ts
@@ -18,7 +18,7 @@ export class CoverageModel {
18
this.uncover = endpointExists
19
.map(el => new EndpointModel('', el.path, el.verb, true))
20
.filter(el => {
21
- if(this.uncover.filter(f => f.verb === el.verb && f.path === el.path).length === 0)
+ if(this.cover.filter(f => f.verb === el.verb && f.path === el.path).length === 0)
22
return el;
23
});
24
0 commit comments