mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2024-11-06 05:55:53 -05:00
8170e22e8f
* Add project-dir * Fix find lock file * Remove package-dir input * format & resolve conflicts * Add unit tests * build dist * Apply change request fixes * handle non-dir cache-dependency-path * bump cache version * run checks * Handle globs in cacheDependencyPath * refactor, introduce `cacheDependencyPathToProjectsDirectories` it is necessary for the next PR related yarn optimization * Changes requests * Apply fixes * review fixes * add e2e * Add unique * review updates * review updates second stage * Review fixes 3 * imporve e2e tests
18 lines
636 B
TypeScript
18 lines
636 B
TypeScript
import {MockGlobber} from './glob-mock';
|
|
|
|
describe('mocked globber tests', () => {
|
|
it('globber should return generator', async () => {
|
|
const globber = new MockGlobber(['aaa', 'bbb', 'ccc']);
|
|
const generator = globber.globGenerator();
|
|
const result: string[] = [];
|
|
for await (const itemPath of generator) {
|
|
result.push(itemPath);
|
|
}
|
|
expect(result).toEqual(['aaa', 'bbb', 'ccc']);
|
|
});
|
|
it('globber should return glob', async () => {
|
|
const globber = new MockGlobber(['aaa', 'bbb', 'ccc']);
|
|
const result: string[] = await globber.glob();
|
|
expect(result).toEqual(['aaa', 'bbb', 'ccc']);
|
|
});
|
|
});
|