mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
11 lines
306 B
TypeScript
11 lines
306 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);
|
|
});
|
|
});
|
|
});
|