mirror of
https://github.com/maputnik/editor.git
synced 2026-08-26 23:17:27 +00:00
Fix coverage in tests.
This commit is contained in:
@@ -24,6 +24,6 @@ jobs:
|
|||||||
- run: mkdir -p /tmp/artifacts/logs
|
- run: mkdir -p /tmp/artifacts/logs
|
||||||
- run: DOCKER_HOST=localhost npm test
|
- run: DOCKER_HOST=localhost npm test
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
- run: npm test
|
- run: ./node_modules/.bin/istanbul report --include /tmp/artifacts/coverage/coverage.json --dir /tmp/artifacts/coverage html lcov
|
||||||
- store_artifacts:
|
- store_artifacts:
|
||||||
path: /tmp/artifacts
|
path: /tmp/artifacts
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ var COVERAGE_PATH = artifacts.pathSync("/coverage");
|
|||||||
|
|
||||||
var coverage = istanbulCov.createCoverageMap({});
|
var coverage = istanbulCov.createCoverageMap({});
|
||||||
|
|
||||||
describe("coverage", function() {
|
|
||||||
// Capture the coverage after each test
|
// Capture the coverage after each test
|
||||||
afterEach(function() {
|
afterEach(function() {
|
||||||
// Code coverage
|
// Code coverage
|
||||||
@@ -23,4 +22,3 @@ describe("coverage", function() {
|
|||||||
var jsonStr = JSON.stringify(coverage, null, 2);
|
var jsonStr = JSON.stringify(coverage, null, 2);
|
||||||
fs.writeFileSync(COVERAGE_PATH+"/coverage.json", jsonStr);
|
fs.writeFileSync(COVERAGE_PATH+"/coverage.json", jsonStr);
|
||||||
})
|
})
|
||||||
})
|
|
||||||
|
|||||||
Reference in New Issue
Block a user