mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
e364d073d7
* clean up tests * add dist-tag * chore: add npm 9 * Update CHANGELOG.md * Update publish.spec.js * add pnpm * yarn 1 * Update tag.spec.ts * Update README.md * more timeout * chore fix build * chore: fix export * chore: fix test * chore: fix tests
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { addRegistry, initialSetup, prepareGenericEmptyProject } from '@verdaccio/test-cli-commons';
|
|
|
|
import { npm } from './utils';
|
|
|
|
describe('publish 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();
|
|
});
|
|
});
|