Skip to content

Commit

Permalink
fix(jest-core): Correct typo in performance.mark() label for `sched…
Browse files Browse the repository at this point in the history
…uleAndRun:end` (#14434)
  • Loading branch information
robhogan committed Aug 21, 2023
1 parent fb7d95c commit 73c91be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
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

0 comments on commit 73c91be

Please sign in to comment.