Skip to content

Commit

Permalink
Remove two cache invalidations
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Jul 21, 2024
1 parent 253c327 commit db6f217
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/vest/src/core/VestBus/VestBus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ export function useInitVestBus() {

// Report a the completion of a test. There may be other tests with the same
// name that are still running, or not yet started.
on(Events.TEST_COMPLETED, () => {});
// on(Events.TEST_COMPLETED, () => {});

on(Events.TEST_RUN_STARTED, () => {
/* Let's just invalidate the suite cache for now */
});
// on(Events.TEST_RUN_STARTED, () => {
// /* Let's just invalidate the suite cache for now */
// });

on(RuntimeEvents.ISOLATE_PENDING, (isolate: TIsolate) => {
if (VestTest.is(isolate)) {
Expand Down

0 comments on commit db6f217

Please sign in to comment.