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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(jest-core): Correct typo in performance.mark() label for scheduleAndRun:end #14434

Merged
merged 3 commits into from Aug 21, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,8 @@

### Fixes

- `[jest-core]` Fix typo in `scheduleAndRun` performance marker ([#14434](https://github.com/jestjs/jest/pull/14434))

### Chore & Maintenance

## 29.6.3
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-core/src/runJest.ts
Expand Up @@ -299,7 +299,7 @@ export default async function runJest({
detail: {numTests: allTests.length},
});
const results = await scheduler.scheduleTests(allTests, testWatcher);
performance.mark('jest/scheduleAndRun:start');
performance.mark('jest/scheduleAndRun:end');

performance.mark('jest/cacheResults:start');
sequencer.cacheResults(allTests, results);
Expand Down