0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-30 22:34:10 -05:00
verdaccio/e2e/cli/e2e-yarn3/install.spec.ts
Juan Picado 18348940c4
e2e: npm search and ping commands (#3386)
* chore: rename folders

* chore: add search tests

* chore: remove old files

* Update pnpm-workspace.yaml

* chore: fix ui

* Update e2e-ci.yml

* chore: renovate deps

* fix build

* chore: add tests
2022-09-19 23:10:38 +02:00

33 lines
823 B
TypeScript

import { join } from 'path';
import { initialSetup, prepareYarnModernProject } from '@verdaccio/test-cli-commons';
import { getYarnCommand, yarn } from './utils';
describe('install a packages', () => {
jest.setTimeout(20000);
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();
});
});