mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
|
import { addRegistry, initialSetup, prepareGenericEmptyProject } from '@verdaccio/test-cli-commons';
|
||
|
|
||
|
import { npm } from './utils';
|
||
|
|
||
|
describe('install a package', () => {
|
||
|
jest.setTimeout(10000);
|
||
|
let registry;
|
||
|
|
||
|
beforeAll(async () => {
|
||
|
const setup = await initialSetup();
|
||
|
registry = setup.registry;
|
||
|
await registry.init();
|
||
|
});
|
||
|
|
||
|
test.each([['verdaccio-memory', 'verdaccio', '@verdaccio/foo', '@verdaccio/some-foo']])(
|
||
|
'should publish a package %s',
|
||
|
async (pkgName) => {
|
||
|
const { tempFolder } = await prepareGenericEmptyProject(
|
||
|
pkgName,
|
||
|
'1.0.0-patch',
|
||
|
registry.port,
|
||
|
registry.getToken(),
|
||
|
registry.getRegistryUrl()
|
||
|
);
|
||
|
const resp = await npm(
|
||
|
{ cwd: tempFolder },
|
||
|
'publish',
|
||
|
'--json',
|
||
|
...addRegistry(registry.getRegistryUrl())
|
||
|
);
|
||
|
const parsedBody = JSON.parse(resp.stdout as string);
|
||
|
expect(parsedBody.name).toEqual(pkgName);
|
||
|
expect(parsedBody.files).toBeDefined();
|
||
|
expect(parsedBody.files).toBeDefined();
|
||
|
}
|
||
|
);
|
||
|
|
||
|
afterAll(async () => {
|
||
|
registry.stop();
|
||
|
});
|
||
|
});
|