forked from fr/deguapp
		
	Fixed: api auth status -> get response
This commit is contained in:
		@@ -217,5 +217,8 @@ describe('GET /api/v1/auth/status', () => {
 | 
				
			|||||||
		const jwt = await login();
 | 
							const jwt = await login();
 | 
				
			||||||
		const res = await request.get(url).set('Cookie', jwt).send();
 | 
							const res = await request.get(url).set('Cookie', jwt).send();
 | 
				
			||||||
		expect(res.statusCode).toBe(200);
 | 
							expect(res.statusCode).toBe(200);
 | 
				
			||||||
 | 
							expect(res.body.data.username).toBe("Test Test")
 | 
				
			||||||
 | 
							expect(res.body.data.email).toBe("thisistest@host.local")
 | 
				
			||||||
 | 
							expect(res.body.data.password).toBeUndefined()
 | 
				
			||||||
	});
 | 
						});
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
		Reference in New Issue
	
	Block a user