0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/e2e/cli/e2e-yarn2/audit.spec.ts

39 lines
1 KiB
TypeScript
Raw Normal View History

import { initialSetup, yarnModernUtils } 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 yarnModernUtils.prepareYarnModernProject(
'yarn-2',
registry.getRegistryUrl(),
getYarnCommand(),
{
packageName: '@scope/name',
version: '1.0.0',
dependencies: { jquery: '3.0.0' },
devDependencies: {},
}
);
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();
});
afterAll(async () => {
registry.stop();
});
});