0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-01-11 13:48:55 +00:00
renovatebot_renovate/lib/modules/manager/kotlin-script/index.spec.ts
2022-07-26 13:37:34 +02:00

11 lines
352 B
TypeScript

import { regEx } from '../../../util/regex';
import { defaultConfig } from '.';
describe('modules/manager/kotlin-script/index', () => {
it('fileMatch regex is correct', () => {
expect(defaultConfig.fileMatch).toHaveLength(1);
defaultConfig.fileMatch.forEach((pattern) => {
expect(() => regEx(pattern)).not.toThrow();
});
});
});