mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
fe60eab99c
* test: enable e2e * test: improve setup * chore: update setup * test: publish on temp folder * chore: initial setup example * chore: add global install to pnpm * chore: update test script * test: add info command * chore: add install tests * chore: add debug enabled code * chore: update pnpm lock file
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import { initialSetup } from '../utils/registry';
|
|
import { npm, pnpm, yarn } from '../utils/process';
|
|
|
|
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();
|
|
});
|
|
});
|