mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
2c0d5ceab8
* Update audit.spec.ts * Update README.md * chore: e2e yarn refactor * chore: add yarn publish tests * Update e2e-ci.yml * Update e2e-ci.yml * Update e2e-ci.yml * Update e2e-ci.yml
40 lines
1.0 KiB
TypeScript
40 lines
1.0 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();
|
|
});
|
|
});
|