Skip to content

Commit

Permalink
Merge pull request #814 from siddtheone/patch-1
Browse files Browse the repository at this point in the history
Removing unused import
  • Loading branch information
titanism authored Jan 14, 2024
2 parents 0ff9c02 + b81d3a4 commit 6b41374
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ test framework at all:

```js
const request = require('supertest');
const assert = require('assert');
const express = require('express');

const app = express();
Expand Down Expand Up @@ -149,7 +148,7 @@ describe('GET /users', function() {
.expect('Content-Type', /json/)
.expect(200)
.then(response => {
assert(response.body.email, '[email protected]')
expect(response.body.email).toEqual('[email protected]');
})
});
});
Expand Down

0 comments on commit 6b41374

Please sign in to comment.