0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 13:38:32 +00:00
renovatebot_renovate/lib/modules/manager/copier/update.spec.ts

26 lines
843 B
TypeScript

import { codeBlock } from 'common-tags';
import { updateDependency } from '.';
describe('modules/manager/copier/update', () => {
describe('updateDependency', () => {
it('should append a new marking line at the end to trigger the artifact update', () => {
const fileContent = codeBlock`
_src_path: https://foo.bar/baz/quux
_commit: 1.0.0
`;
const ret = updateDependency({ fileContent, upgrade: {} });
expect(ret).toBe(`${fileContent}\n#copier updated`);
});
it('should not update again if the new line has been appended', () => {
const fileContent = codeBlock`
_src_path: https://foo.bar/baz/quux
_commit: 1.0.0
#copier updated
`;
const ret = updateDependency({ fileContent, upgrade: {} });
expect(ret).toBe(fileContent);
});
});
});