2022-09-17 04:35:10 -05:00
|
|
|
import { join } from 'path';
|
|
|
|
|
|
|
|
import { initialSetup, prepareYarnModernProject } from '@verdaccio/test-cli-commons';
|
|
|
|
|
|
|
|
import { getYarnCommand, yarn } from './utils';
|
|
|
|
|
|
|
|
describe('install a packages', () => {
|
2022-09-18 14:47:23 -05:00
|
|
|
jest.setTimeout(20000);
|
2022-09-17 04:35:10 -05:00
|
|
|
let registry;
|
|
|
|
let projectFolder;
|
|
|
|
|
|
|
|
beforeAll(async () => {
|
|
|
|
const setup = await initialSetup();
|
|
|
|
registry = setup.registry;
|
|
|
|
await registry.init();
|
|
|
|
const { tempFolder } = await prepareYarnModernProject(
|
|
|
|
join(__dirname, './yarn-install'),
|
|
|
|
'yarn-2',
|
|
|
|
registry.getRegistryUrl(),
|
|
|
|
getYarnCommand()
|
|
|
|
);
|
|
|
|
projectFolder = tempFolder;
|
|
|
|
});
|
|
|
|
|
|
|
|
test('should run yarn install', async () => {
|
|
|
|
const resp = await yarn(projectFolder, 'install');
|
|
|
|
expect(resp.stdout).toMatch(/Completed/);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(async () => {
|
|
|
|
registry.stop();
|
|
|
|
});
|
|
|
|
});
|