aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/plugins/plugin-helpers.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/plugins/plugin-helpers.ts')
-rw-r--r--server/tests/plugins/plugin-helpers.ts7
1 files changed, 2 insertions, 5 deletions
diff --git a/server/tests/plugins/plugin-helpers.ts b/server/tests/plugins/plugin-helpers.ts
index 2ac070b41..20020ec41 100644
--- a/server/tests/plugins/plugin-helpers.ts
+++ b/server/tests/plugins/plugin-helpers.ts
@@ -117,13 +117,11 @@ describe('Test plugin helpers', function () {
117 describe('User', function () { 117 describe('User', function () {
118 118
119 it('Should not get a user if not authenticated', async function () { 119 it('Should not get a user if not authenticated', async function () {
120 const res = await makeGetRequest({ 120 await makeGetRequest({
121 url: servers[0].url, 121 url: servers[0].url,
122 path: '/plugins/test-four/router/user', 122 path: '/plugins/test-four/router/user',
123 statusCodeExpected: HttpStatusCode.OK_200 123 statusCodeExpected: HttpStatusCode.NOT_FOUND_404
124 }) 124 })
125
126 expect(res.body.user).to.be.undefined
127 }) 125 })
128 126
129 it('Should get a user if authenticated', async function () { 127 it('Should get a user if authenticated', async function () {
@@ -134,7 +132,6 @@ describe('Test plugin helpers', function () {
134 statusCodeExpected: HttpStatusCode.OK_200 132 statusCodeExpected: HttpStatusCode.OK_200
135 }) 133 })
136 134
137 expect(res.body.user).to.exist
138 expect(res.body.username).to.equal('root') 135 expect(res.body.username).to.equal('root')
139 expect(res.body.isAdmin).to.be.true 136 expect(res.body.isAdmin).to.be.true
140 expect(res.body.isModerator).to.be.false 137 expect(res.body.isModerator).to.be.false