mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
|
import { describe } from 'vitest';
|
||
|
|
||
|
import { runUnpublish } from '@verdaccio/e2e-cli-npm-common';
|
||
|
|
||
|
import { npm } from './utils';
|
||
|
|
||
|
describe('unpublish a package', () => {
|
||
|
runUnpublish(npm);
|
||
|
});
|