mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-04 14:08:44 -04:00
9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
import * as packageStore from 'package-store'
|
|
import test = require('tape')
|
|
|
|
test('public API', t => {
|
|
t.equal(typeof packageStore.getRegistryName, 'function')
|
|
t.equal(typeof packageStore.read, 'function')
|
|
t.end()
|
|
})
|