summaryrefslogtreecommitdiff
path: root/spec/frontend_integration/test_helpers/factories/commit.js
blob: 196295addbeb7139cb3cdcce10509c349559fb60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { getCommit } from '../fixtures';
import { withValues } from '../utils/obj';
import { createCommitId } from './commit_id';

export const createNewCommit = ({ id = createCommitId(), message }, orig = getCommit()) => {
  return withValues(orig, {
    id,
    short_id: id.substr(0, 8),
    message,
    title: message,
    web_url: orig.web_url.replace(orig.id, id),
    parent_ids: [orig.id],
  });
};