gitlab-org--gitlab-foss/spec/frontend/pipeline_editor/mock_data.js

14 lines
380 B
JavaScript
Raw Normal View History

export const mockProjectPath = 'user1/project1';
export const mockDefaultBranch = 'master';
export const mockNewMergeRequestPath = '/-/merge_requests/new';
export const mockCommitId = 'aabbccdd';
export const mockCommitMessage = 'My commit message';
export const mockCiConfigPath = '.gitlab-ci.yml';
export const mockCiYml = `
job1:
stage: test
script:
- echo 'test'
`;