mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
1755840cd3
* chore: add config utility * improve verdaccio bin location * add new npm cli e2e tests * add tests * rename files
37 lines
1.2 KiB
TypeScript
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();
|
|
});
|
|
});
|