summaryrefslogtreecommitdiff
path: root/spec/frontend/pipeline_editor/mock_data.js
blob: 96fa6e5e004fede4dfbd7c1d159462baed7c750d (plain)
1
2
3
4
5
6
7
8
9
10
export const mockProjectPath = 'user1/project1';
export const mockDefaultBranch = 'master';

export const mockCiConfigPath = '.gitlab-ci.yml';
export const mockCiYml = `
job1:
  stage: test
  script: 
    - echo 'test'
`;