mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
|
import { addNpmPrefix } from './registry';
|
||
|
|
||
|
describe('registry utils', function () {
|
||
|
test('prefix', () => {
|
||
|
expect([...addNpmPrefix('foo')]).toEqual('');
|
||
|
});
|
||
|
});
|