Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mock_data.js « runner « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8d0f1273c708e8885b1c05337ea288fc542385e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Fixtures generated by: spec/frontend/fixtures/runner.rb

// Admin queries
import runnersData from 'test_fixtures/graphql/runner/get_runners.query.graphql.json';
import runnersDataPaginated from 'test_fixtures/graphql/runner/get_runners.query.graphql.paginated.json';
import runnerData from 'test_fixtures/graphql/runner/get_runner.query.graphql.json';

// Group queries
import groupRunnersData from 'test_fixtures/graphql/runner/get_group_runners.query.graphql.json';
import groupRunnersDataPaginated from 'test_fixtures/graphql/runner/get_group_runners.query.graphql.paginated.json';

export {
  runnerData,
  runnersDataPaginated,
  runnersData,
  groupRunnersData,
  groupRunnersDataPaginated,
};