mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 16:46:25 +00:00
4f59b62da4
* chore(deps): update dependency prettier to v2 * Run prettier-fix Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Jamie Magee <jamie.magee@gmail.com>
11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
import { skip } from './util';
|
|
|
|
describe('lib/manager/homebrew/util', () => {
|
|
describe('skip()', () => {
|
|
it('handles out of bounds case', () => {
|
|
const content = 'some content';
|
|
const idx = content.length * 2;
|
|
expect(skip(idx, content, (c) => c === '!')).toBe(idx);
|
|
});
|
|
});
|
|
});
|