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

mock_data.js « pipeline_editor « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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'
`;