2021-09-04 01:27:46 +05:30
|
|
|
// Fixtures generated by: spec/frontend/fixtures/runner.rb
|
2021-11-11 11:23:49 +05:30
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
// Show runner queries
|
|
|
|
import runnerData from 'test_fixtures/graphql/runner/show/runner.query.graphql.json';
|
|
|
|
import runnerWithGroupData from 'test_fixtures/graphql/runner/show/runner.query.graphql.with_group.json';
|
|
|
|
import runnerProjectsData from 'test_fixtures/graphql/runner/show/runner_projects.query.graphql.json';
|
|
|
|
import runnerJobsData from 'test_fixtures/graphql/runner/show/runner_jobs.query.graphql.json';
|
|
|
|
|
|
|
|
// Edit runner queries
|
|
|
|
import runnerFormData from 'test_fixtures/graphql/runner/edit/runner_form.query.graphql.json';
|
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
// List queries
|
|
|
|
import runnersData from 'test_fixtures/graphql/runner/list/admin_runners.query.graphql.json';
|
|
|
|
import runnersDataPaginated from 'test_fixtures/graphql/runner/list/admin_runners.query.graphql.paginated.json';
|
|
|
|
import runnersCountData from 'test_fixtures/graphql/runner/list/admin_runners_count.query.graphql.json';
|
|
|
|
import groupRunnersData from 'test_fixtures/graphql/runner/list/group_runners.query.graphql.json';
|
|
|
|
import groupRunnersDataPaginated from 'test_fixtures/graphql/runner/list/group_runners.query.graphql.paginated.json';
|
|
|
|
import groupRunnersCountData from 'test_fixtures/graphql/runner/list/group_runners_count.query.graphql.json';
|
2021-11-11 11:23:49 +05:30
|
|
|
|
2022-06-21 17:19:12 +05:30
|
|
|
// Other mock data
|
|
|
|
export const onlineContactTimeoutSecs = 2 * 60 * 60;
|
2022-07-23 23:45:48 +05:30
|
|
|
export const staleTimeoutSecs = 7889238; // Ruby's `3.months`
|
|
|
|
|
|
|
|
export const emptyStateSvgPath = 'emptyStateSvgPath.svg';
|
|
|
|
export const emptyStateFilteredSvgPath = 'emptyStateFilteredSvgPath.svg';
|
2022-06-21 17:19:12 +05:30
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
export {
|
2022-04-04 11:22:00 +05:30
|
|
|
runnersData,
|
2021-11-18 22:05:49 +05:30
|
|
|
runnersDataPaginated,
|
2022-07-16 23:28:13 +05:30
|
|
|
runnersCountData,
|
|
|
|
groupRunnersData,
|
|
|
|
groupRunnersDataPaginated,
|
|
|
|
groupRunnersCountData,
|
2022-04-04 11:22:00 +05:30
|
|
|
runnerData,
|
|
|
|
runnerWithGroupData,
|
|
|
|
runnerProjectsData,
|
|
|
|
runnerJobsData,
|
2022-07-16 23:28:13 +05:30
|
|
|
runnerFormData,
|
2021-11-18 22:05:49 +05:30
|
|
|
};
|