@@ -20,7 +20,7 @@ test('create', async t => {
2020
2121test ( 'create - no options' , async t => {
2222 // NOTE: mocking real url, because no opts variable means `registry` value
23- // will be defauled to real registry url in `npm-registry-fetch`
23+ // will be defaulted to real registry url in `npm-registry-fetch`
2424 tnock ( t , 'https://registry.npmjs.org' )
2525 . put ( '/-/org/foo/team' , { name : 'cli' } )
2626 . reply ( 201 , { name : 'cli' } )
@@ -61,7 +61,7 @@ test('destroy', async t => {
6161
6262test ( 'destroy - no options' , async t => {
6363 // NOTE: mocking real url, because no opts variable means `registry` value
64- // will be defauled to real registry url in `npm-registry-fetch`
64+ // will be defaulted to real registry url in `npm-registry-fetch`
6565 tnock ( t , 'https://registry.npmjs.org' )
6666 . delete ( '/-/team/foo/cli' )
6767 . reply ( 204 )
@@ -82,7 +82,7 @@ test('add', async t => {
8282
8383test ( 'add - no options' , async t => {
8484 // NOTE: mocking real url, because no opts variable means `registry` value
85- // will be defauled to real registry url in `npm-registry-fetch`
85+ // will be defaulted to real registry url in `npm-registry-fetch`
8686 tnock ( t , 'https://registry.npmjs.org' )
8787 . put ( '/-/team/foo/cli/user' , { user : 'zkat' } )
8888 . reply ( 201 , { } )
@@ -103,7 +103,7 @@ test('rm', async t => {
103103
104104test ( 'rm - no options' , async t => {
105105 // NOTE: mocking real url, because no opts variable means `registry` value
106- // will be defauled to real registry url in `npm-registry-fetch`
106+ // will be defaulted to real registry url in `npm-registry-fetch`
107107 tnock ( t , 'https://registry.npmjs.org' )
108108 . delete ( '/-/team/foo/cli/user' , { user : 'zkat' } )
109109 . reply ( 204 )
@@ -124,7 +124,7 @@ test('lsTeams', async t => {
124124
125125test ( 'lsTeams - no options' , async t => {
126126 // NOTE: mocking real url, because no opts variable means `registry` value
127- // will be defauled to real registry url in `npm-registry-fetch`
127+ // will be defaulted to real registry url in `npm-registry-fetch`
128128 tnock ( t , 'https://registry.npmjs.org' )
129129 . get ( '/-/org/foo/team?format=cli' )
130130 . reply ( 200 , [ 'foo:bar' , 'foo:cli' ] )
@@ -153,7 +153,7 @@ test('lsTeams.stream', async t => {
153153
154154test ( 'lsTeams.stream - no options' , async t => {
155155 // NOTE: mocking real url, because no opts variable means `registry` value
156- // will be defauled to real registry url in `npm-registry-fetch`
156+ // will be defaulted to real registry url in `npm-registry-fetch`
157157 tnock ( t , 'https://registry.npmjs.org' )
158158 . get ( '/-/org/foo/team?format=cli' )
159159 . reply ( 200 , [ 'foo:bar' , 'foo:cli' ] )
@@ -174,7 +174,7 @@ test('lsUsers', async t => {
174174
175175test ( 'lsUsers - no options' , async t => {
176176 // NOTE: mocking real url, because no opts variable means `registry` value
177- // will be defauled to real registry url in `npm-registry-fetch`
177+ // will be defaulted to real registry url in `npm-registry-fetch`
178178 tnock ( t , 'https://registry.npmjs.org' )
179179 . get ( '/-/team/foo/cli/user?format=cli' )
180180 . reply ( 500 )
@@ -203,7 +203,7 @@ test('lsUsers.stream', async t => {
203203
204204test ( 'lsUsers.stream - no options' , async t => {
205205 // NOTE: mocking real url, because no opts variable means `registry` value
206- // will be defauled to real registry url in `npm-registry-fetch`
206+ // will be defaulted to real registry url in `npm-registry-fetch`
207207 tnock ( t , 'https://registry.npmjs.org' )
208208 . get ( '/-/team/foo/cli/user?format=cli' )
209209 . reply ( 200 , [ 'iarna' , 'zkat' ] )
0 commit comments