mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
40 lines
1 KiB
TypeScript
40 lines
1 KiB
TypeScript
|
import { initialSetup, yarnModernUtils } from '@verdaccio/test-cli-commons';
|
||
|
|
||
|
import { getYarnCommand, yarn } from './utils';
|
||
|
|
||
|
describe('install a packages', () => {
|
||
|
jest.setTimeout(20000);
|
||
|
let registry;
|
||
|
let projectFolder;
|
||
|
|
||
|
beforeAll(async () => {
|
||
|
const setup = await initialSetup();
|
||
|
registry = setup.registry;
|
||
|
await registry.init();
|
||
|
const { tempFolder } = await yarnModernUtils.prepareYarnModernProject(
|
||
|
'yarn-2',
|
||
|
registry.getRegistryUrl(),
|
||
|
getYarnCommand(),
|
||
|
{
|
||
|
packageName: '@scope/name',
|
||
|
version: '1.0.0',
|
||
|
dependencies: { jquery: '3.6.0' },
|
||
|
devDependencies: {},
|
||
|
},
|
||
|
registry.getToken()
|
||
|
);
|
||
|
projectFolder = tempFolder;
|
||
|
});
|
||
|
|
||
|
test('should run yarn publish', async () => {
|
||
|
const resp = await yarn(projectFolder, 'install');
|
||
|
expect(resp.stdout).toMatch(/Completed/);
|
||
|
const resp1 = await yarn(projectFolder, 'npm', 'publish');
|
||
|
expect(resp1.stdout).toMatch(/Package archive published/);
|
||
|
});
|
||
|
|
||
|
afterAll(async () => {
|
||
|
registry.stop();
|
||
|
});
|
||
|
});
|