mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-12 23:51:55 +00:00
38 lines
1.4 KiB
TypeScript
38 lines
1.4 KiB
TypeScript
import { fileMatchesWorkspaces, filesMatchingWorkspaces } from './utils';
|
|
|
|
describe('modules/manager/bun/utils', () => {
|
|
const pwd = '/project';
|
|
|
|
describe('fileMatchesWorkspaces', () => {
|
|
it('should return false when fileName does not start with pwd', () => {
|
|
// This file path doesn't start with the given pwd, so it should return false.
|
|
const fileName = '/another-path/package.json';
|
|
const workspaces = ['**'];
|
|
expect(fileMatchesWorkspaces(pwd, fileName, workspaces)).toBe(false);
|
|
});
|
|
|
|
it('should correctly evaluate fileName when it starts with pwd', () => {
|
|
// Here the fileName starts with pwd, so the workspace patterns will be checked.
|
|
const fileName = '/project/foo/package.json';
|
|
const workspaces = ['foo'];
|
|
expect(fileMatchesWorkspaces(pwd, fileName, workspaces)).toBe(true);
|
|
});
|
|
});
|
|
|
|
describe('filesMatchingWorkspaces', () => {
|
|
const workspaces = ['foo', 'bar'];
|
|
const files = [
|
|
'/project/foo/package.json',
|
|
'/project/bar/package.json',
|
|
'/other/baz/package.json', // This should be filtered out since it doesn't start with pwd
|
|
];
|
|
|
|
it('should filter files matching workspaces and pwd', () => {
|
|
const result = filesMatchingWorkspaces(pwd, files, workspaces);
|
|
expect(result).toEqual([
|
|
'/project/foo/package.json',
|
|
'/project/bar/package.json',
|
|
]);
|
|
});
|
|
});
|
|
});
|