0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/test/e2e-cli/test_bk/info.spec.ts
Behrang Yarahmadi 13310814da
#2606 add prettier plugin sort imports (#2607)
* #2606 add prettier plugin sort imprts

* #2606 update pnpm-lock.yaml

* #2606 update eslint rules

* #2606 fixes website directory formatting

Co-authored-by: Ayush Sharma <ayush.sharma@trivago.com>
2021-10-29 17:33:05 +02:00

37 lines
1.2 KiB
TypeScript

import { npm, pnpm, yarn } from '../utils/process';
import { initialSetup } from '../utils/registry';
describe('install a package', () => {
jest.setTimeout(90000);
const port = '9010';
let registryProcess;
beforeAll(async () => {
registryProcess = await initialSetup(port);
});
test('should run npm info json body', async () => {
const resp = await npm('info', 'verdaccio', '--json');
const parsedBody = JSON.parse(resp.stdout as string);
expect(parsedBody.name).toEqual('verdaccio');
expect(parsedBody.dependencies).toBeDefined();
});
test('should run yarn classic info json body', async () => {
const resp = await yarn('info', 'verdaccio', '--json');
const parsedBody = JSON.parse(resp.stdout as string);
expect(parsedBody.data.name).toEqual('verdaccio');
expect(parsedBody.data.dependencies).toBeDefined();
});
test('should run pnpm info json body', async () => {
const resp = await pnpm('info', 'verdaccio', '--json');
const parsedBody = JSON.parse(resp.stdout as string);
expect(parsedBody.name).toEqual('verdaccio');
expect(parsedBody.dependencies).toBeDefined();
});
afterAll(async () => {
registryProcess.child.kill();
});
});