mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
11 lines
352 B
TypeScript
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();
|
|
});
|
|
});
|
|
});
|