Skip to content

Commit

Permalink
Fix coverage reports not firing (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
neild3r committed Feb 11, 2022
1 parent 9d2edca commit 806d1ff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
All notable changes to the "php-docblocker" extension will be documented in this file.

## [Unreleased]
- Fix issue with coverage reports not firing

## [2.6.1] - 2021-10-12
- Fix double start delimeter when vscode setting `editor.autoClosingBrackets` is set to `never`
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@
}
},
"scripts": {
"clean": "rm -rf ./coverage/* ./.nyc_output ./out",
"verify-pat": "vsce verify-pat",
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"lint": "tslint -p ./",
Expand All @@ -166,7 +167,7 @@
"esbuild": "^0.12.29",
"markdown-table-ts": "^1.0.3",
"mocha": "^9.1.1",
"nyc": "^15.0.0",
"nyc": "^15.1.0",
"typescript": "^3.9.10",
"vsce": "^1.100.0",
"vscode-test": "^1.6.1"
Expand Down
2 changes: 1 addition & 1 deletion test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ export async function run(): Promise<void> {
});
} finally {
nyc.writeCoverageFile();
nyc.report();
await nyc.report();
}
}

0 comments on commit 806d1ff

Please sign in to comment.