| 12345678910111213141516171819202122232425262728293031323334353637 |
- import { SimpleGraphQLClient } from '@vendure/testing';
- import { GetRunningJobsQuery, GetRunningJobsQueryVariables } from '../graphql/generated-e2e-admin-types';
- import { GET_RUNNING_JOBS } from '../graphql/shared-definitions';
- /**
- * For mutation which trigger background jobs, this can be used to "pause" the execution of
- * the test until those jobs have completed;
- */
- export async function awaitRunningJobs(
- adminClient: SimpleGraphQLClient,
- timeout: number = 5000,
- delay = 100,
- ) {
- let runningJobs = 0;
- const startTime = +new Date();
- let timedOut = false;
- // Allow a brief period for the jobs to start in the case that
- // e.g. event debouncing is used before triggering the job.
- await new Promise(resolve => setTimeout(resolve, delay));
- do {
- const { jobs } = await adminClient.query<GetRunningJobsQuery, GetRunningJobsQueryVariables>(
- GET_RUNNING_JOBS,
- {
- options: {
- filter: {
- isSettled: {
- eq: false,
- },
- },
- },
- },
- );
- runningJobs = jobs.totalItems;
- timedOut = timeout < +new Date() - startTime;
- } while (runningJobs > 0 && !timedOut);
- }
|