Skip to content

Commit

Permalink
fix: remove benchmark task filtering
Browse files Browse the repository at this point in the history
- Breaking change in vitest
  • Loading branch information
AriPerkkio committed Jan 27, 2023
1 parent fcb5350 commit 976abd3
Show file tree
Hide file tree
Showing 3 changed files with 145 additions and 17 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -41,7 +41,7 @@
"publint": "^0.1.8",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vitest": "^0.27.3"
"vitest": "^0.28.3"
},
"peerDependencies": {
"vitest": ">=0.18.0"
Expand Down
158 changes: 143 additions & 15 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/xml.ts
Expand Up @@ -107,7 +107,7 @@ function generateTestCaseElement(test: Test) {
function getAllTests(task: Task): Test[] {
const tests: Test[] = [];

if (task.type === 'benchmark') {
if (task.type === 'custom') {
return tests;
}

Expand Down

0 comments on commit 976abd3

Please sign in to comment.