-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v2-master' into tabs-layout-change
* v2-master: (130 commits) docs update Fix unit test Fix issues from review - Ensure extensions/extension-types.ts remains free from other imports - Now check endpoint detail type is correct at runtime - Cf Endpoint Type is now registered in cf package - Ensure cf package tests & lint execute correctly - Ensure endpoint details components are destroyed correctly Fix merge issue Fix merge issue More info Fix lint issues Add note Fix missing .entity Priorities & tweaks Remove index.html file Add support for endpoint sub type (and metadata) (#3423) Fix service broker action - Ensure that the guid property is properly set - This means error handling happens correcty Update cf-api-v3.md Updaes Another lint fix Fix linting, don't show image if no image Disable endpoint card routerLink using new directive Missing images Fix existing getIconButton bug - There may be other places where this magically worked and now correctly won't ...
- Loading branch information
Showing
1,885 changed files
with
13,755 additions
and
9,816 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
const createReporter = require('istanbul-api').createReporter; | ||
const istanbulCoverage = require('istanbul-lib-coverage'); | ||
const coverage = require('../coverage/coverage-final.json'); | ||
|
||
const map = istanbulCoverage.createCoverageMap(); | ||
Object.keys(coverage).forEach(filename => map.addFileCoverage(coverage[filename])); | ||
|
||
const reporter = createReporter(); | ||
reporter.addAll(['html', 'lcovonly', 'json']); | ||
reporter.write(map); |
Oops, something went wrong.