UNPKG

337 BJavaScriptView Raw
1import helpers from './helpers'
2
3describe(helpers.pkg.name, () => {
4 it('helpers.readSettings()', async () => {
5 const repository = await helpers.readSettings({ namespace: 'repository' })
6 expect(repository.type).toBe('git')
7 expect(repository.url).toBe(
8 'git+https://github.com/jimzhan/esnext-scripts.git'
9 )
10 })
11})