We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cbd409 commit befa7c0Copy full SHA for befa7c0
1 file changed
test/integration/install.js
@@ -531,8 +531,9 @@ describe('install', () => {
531
.set('cookie', adminSessionCookie)
532
.set('Accept', 'application/json')
533
.send({
534
- "members":{"roles":[]},
535
- "admins":{"roles":["_admin"]}
+ // The couchapp is public but only admins can write to it
+ members: { roles: [] },
536
+ admins: { roles: ["_admin"] },
537
});
538
})
539
.then((res) => {
0 commit comments