@@ -71,10 +71,16 @@ t.test('grant', t => {
71
71
} )
72
72
73
73
t . test ( 'read-only' , async t => {
74
- const { npm } = await loadMockNpm ( t )
74
+ const authToken = 'abcd1234'
75
+ const { npm } = await loadMockNpm ( t , {
76
+ config : {
77
+ '//registry.npmjs.org/:_authToken' : authToken ,
78
+ } ,
79
+ } )
75
80
const registry = new MockRegistry ( {
76
81
tap : t ,
77
82
registry : npm . config . get ( 'registry' ) ,
83
+ authorization : authToken ,
78
84
} )
79
85
const permissions = 'read-only'
80
86
registry . setPermissions ( { spec : '@npmcli/test-package' , team : '@npm:test-team' , permissions } )
@@ -85,10 +91,16 @@ t.test('grant', t => {
85
91
86
92
t . test ( 'revoke' , t => {
87
93
t . test ( 'success' , async t => {
88
- const { npm } = await loadMockNpm ( t )
94
+ const authToken = 'abcd1234'
95
+ const { npm } = await loadMockNpm ( t , {
96
+ config : {
97
+ '//registry.npmjs.org/:_authToken' : authToken ,
98
+ } ,
99
+ } )
89
100
const registry = new MockRegistry ( {
90
101
tap : t ,
91
102
registry : npm . config . get ( 'registry' ) ,
103
+ authorization : authToken ,
92
104
} )
93
105
registry . removePermissions ( { spec : '@npmcli/test-package' , team : '@npm:test-team' } )
94
106
await npm . exec ( 'access' , [ 'revoke' , '@npm:test-team' , '@npmcli/test-package' ] )
0 commit comments