mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-06 22:40:26 -05:00
722c88b1d6
* fix(deps): update all core dependencies * fix test * Update audit.spec.ts * Update e2e-ci.yml * test Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Juan Picado <juanpicado19@gmail.com>
40 lines
1.2 KiB
TypeScript
40 lines
1.2 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.skip('should run yarn npm audit info json body', async () => {
|
|
await yarn(projectFolder, 'install');
|
|
const resp = await yarn(projectFolder, 'npm', 'audit', '--json');
|
|
console.log('--resp********:', resp);
|
|
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();
|
|
});
|
|
});
|