0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-30 22:34:10 -05:00
verdaccio/test/cli/e2e-yarn2/audit.spec.ts
Juan Picado ccabb4b876
test: e2e audit cmd (#3382)
* test: e2e audit

* Update process.ts

* Update audit.spec.ts

* Update package.json

* chore: test

* test

* test

* chore: add docs
2022-09-17 00:33:55 +02:00

39 lines
1.1 KiB
TypeScript

import { join } from 'path';
import { initialSetup, prepareYarnModernProject } from '@verdaccio/test-cli-commons';
import { getYarnCommand, yarn } from './utils';
describe('audit a package yarn 2', () => {
jest.setTimeout(10000);
let registry;
let projectFolder;
beforeAll(async () => {
const setup = await initialSetup();
registry = setup.registry;
await registry.init();
const { tempFolder } = await prepareYarnModernProject(
join(__dirname, './yarn-project'),
'yarn-2',
registry.getRegistryUrl(),
getYarnCommand()
);
projectFolder = tempFolder;
});
test('should run yarn npm audit info json body', async () => {
await yarn(projectFolder, 'install');
const resp = await yarn(projectFolder, 'npm', 'audit', '--json');
const parsedBody = JSON.parse(resp.stdout as string);
expect(parsedBody.advisories).toBeDefined();
expect(parsedBody.advisories['1069969']).toBeDefined();
expect(parsedBody.advisories['1069969'].recommendation).toEqual(
'Upgrade to version 3.4.0 or later'
);
});
afterAll(async () => {
registry.stop();
});
});