mirror of
https://gitea.com/actions/setup-node.git
synced 2024-11-24 11:09:33 +01:00
tests: add test to check for corepack enable call
This commit is contained in:
parent
3e8819f8f2
commit
b6efa7f903
1 changed files with 38 additions and 0 deletions
|
@ -1253,6 +1253,44 @@ describe('setup-node', () => {
|
|||
}
|
||||
);
|
||||
});
|
||||
|
||||
describe('corepack flag', () => {
|
||||
it('use corepack if specified', async () => {
|
||||
inputs['corepack'] = 'true';
|
||||
await main.run();
|
||||
expect(getExecOutputSpy).toHaveBeenCalledWith(
|
||||
'corepack',
|
||||
['enable'],
|
||||
expect.anything()
|
||||
);
|
||||
});
|
||||
|
||||
it('use corepack with given package manager', async () => {
|
||||
inputs['corepack'] = 'npm';
|
||||
await main.run();
|
||||
expect(getExecOutputSpy).toHaveBeenCalledWith(
|
||||
'corepack',
|
||||
['enable', 'npm'],
|
||||
expect.anything()
|
||||
);
|
||||
});
|
||||
|
||||
it('use corepack with multiple package managers', async () => {
|
||||
inputs['corepack'] = 'npm yarn';
|
||||
await main.run();
|
||||
expect(getExecOutputSpy).toHaveBeenCalledWith(
|
||||
'corepack',
|
||||
['enable', 'npm', 'yarn'],
|
||||
expect.anything()
|
||||
);
|
||||
});
|
||||
|
||||
it('fails to use corepack with an invalid package manager', async () => {
|
||||
await expect(im.enableCorepack('npm turbo')).rejects.toThrowError(
|
||||
`One or more of the specified package managers [ npm turbo ] are not supported by corepack`
|
||||
);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('helper methods', () => {
|
||||
|
|
Loading…
Reference in a new issue