mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
5cbee6f57f
* fix: unpublish a package on storage package fix: unpublish a package on storage package fix unpublish e2e * Update index.ts * reuse cli e2e tests * npm 10 migrated * migrate tests * migrate tests * clean up * Create hot-crews-live.md
25 lines
725 B
TypeScript
25 lines
725 B
TypeScript
import { afterAll, beforeAll, describe, expect, test } from 'vitest';
|
|
|
|
import { addRegistry, initialSetup } from '@verdaccio/test-cli-commons';
|
|
|
|
export function runPing(npm) {
|
|
describe('ping registry', () => {
|
|
let registry;
|
|
|
|
beforeAll(async () => {
|
|
const setup = await initialSetup();
|
|
registry = setup.registry;
|
|
await registry.init();
|
|
});
|
|
|
|
test('should ping registry', async () => {
|
|
const resp = await npm({}, 'ping', '--json', ...addRegistry(registry.getRegistryUrl()));
|
|
const parsedBody = JSON.parse(resp.stdout as string);
|
|
expect(parsedBody.registry).toEqual(registry.getRegistryUrl() + '/');
|
|
});
|
|
|
|
afterAll(async () => {
|
|
registry.stop();
|
|
});
|
|
});
|
|
}
|