Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: install same vitest version across packages #6306

Merged
merged 1 commit into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/spec-test-util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"@lodestar/utils": "^1.14.0",
"async-retry": "^1.3.3",
"axios": "^1.3.4",
"vitest": "^1.0.2",
"vitest": "^1.1.0",
"rimraf": "^4.4.1",
"snappyjs": "^0.7.0",
"tar": "^6.1.13"
Expand All @@ -75,6 +75,6 @@
"@types/tar": "^6.1.4"
},
"peerDependencies": {
"vitest": "^1.0.2"
"vitest": "^1.1.0"
}
}
2 changes: 1 addition & 1 deletion packages/spec-test-util/src/single.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export function describeDirectorySpecTest<TestCase extends {meta?: any}, Result>
continue;
}

// Use full path here, not just `testSubDirname` to allow usage of `vitest --grep`
// Use full path here, not just `testSubDirname` to allow usage of `vitest -t`
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

completely unrelated change, picked that up while reviewing #6222 and since this is a fixup of that PR, might as well include that here

const testName = `${name}/${testSubDirname}`;
it(testName, async function (context) {
// some tests require to load meta.yaml first in order to know respective ssz types.
Expand Down
Loading