mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-14 21:13:27 +01:00
Fix coverage in tests.
This commit is contained in:
parent
bc19aea438
commit
0cec0cf595
2 changed files with 14 additions and 16 deletions
|
@ -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);
|
||||||
})
|
})
|
||||||
})
|
|
||||||
|
|
Loading…
Reference in a new issue