diff --git a/app.mock.test.js b/app.mock.test.js index 79b9449..ed4fd1e 100644 --- a/app.mock.test.js +++ b/app.mock.test.js @@ -56,4 +56,4 @@ describe('given incorrect or missing username and password', () => { // test incorrect username or password according to requirements // test missing username or password // ... -}) \ No newline at end of file +}) diff --git a/app.test.js b/app.test.js index f1b561d..39a8893 100644 --- a/app.test.js +++ b/app.test.js @@ -24,11 +24,6 @@ describe('given correct username and password', () => { }) expect(response.body.userId).toBeDefined(); }) - - // test response content type? - // test response message - // test response user id value - // ... }) describe('given incorrect or missing username and password', () => { @@ -40,10 +35,4 @@ describe('given incorrect or missing username and password', () => { }) expect(response.statusCode).toBe(400) }) - - // test response message - // test that response does NOT have userId - // test incorrect username or password according to requirements - // test missing username or password - // ... }) \ No newline at end of file