Skip to content

Commit

Permalink
chore: install same vitest version across packages
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig committed Jan 16, 2024
1 parent 4ff2911 commit eb2f4c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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`
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

0 comments on commit eb2f4c2

Please sign in to comment.