Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
relates #28
  • Loading branch information
rehabas committed Apr 4, 2020
1 parent ff2b557 commit 10d270e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ describe('Get stats', () => {
.expect('Content-Type', /json/)
.end((err, res) => {
if (err) return done(err);
const { data } = res.body;console.log(data)
const { data } = res.body;
expect(data[0].numOfCohorts).toBe(2);
expect(data[1].numOfProjects).toBe(7);
expect(data[2].numOfStudents).toBe(2);
Expand Down

0 comments on commit 10d270e

Please sign in to comment.