summaryrefslogtreecommitdiff
path: root/spec/frontend/__helpers__/jest_execution_watcher.js
blob: 0fc3d330ec31e03ec7d9f855fde2c40c966004e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export const createJestExecutionWatcher = () => {
  let isExecuting = false;

  beforeAll(() => {
    isExecuting = true;
  });
  afterAll(() => {
    isExecuting = false;
  });

  return () => isExecuting;
};