fix(core): update

This commit is contained in:
2021-05-05 11:56:12 +00:00
parent af0d95f327
commit e0ccb6c076
3 changed files with 16 additions and 5 deletions

View File

@ -37,11 +37,21 @@ tap.test('should get package from verdaccio', async () => {
});
tap.test('should get a specific file from a package', async () => {
const bundleFile = await verdaccioRegistry.getFileFromPackage(
const wantedFile = await verdaccioRegistry.getFileFromPackage(
'@pushrocks/websetup',
'ts/index.ts'
);
console.log(bundleFile.contentBuffer.toString());
console.log(wantedFile.contentBuffer.toString());
});
tap.test('should get a specific file from a package', async () => {
const wantedFiles = await verdaccioRegistry.getFilesFromPackage(
'@pushrocks/websetup',
'ts/'
);
for(const file of wantedFiles) {
console.log(file.path);
}
});
tap.start();