We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41145ef commit df6e396Copy full SHA for df6e396
test/index.js
@@ -21,17 +21,3 @@ test("Correct users returned", function(t) {
21
t.end();
22
});
23
24
-
25
-test("Correct users returned2", function(t) {
26
- request(app)
27
- .get("/api/users")
28
- .expect("Content-Type", /json/)
29
- .expect(200)
30
- .end(function(err, res) {
31
- var expectedUsers = ["John", "Bob", "Hal"];
32
33
- t.error(err, "No error");
34
- t.same(res.body, expectedUsers, "Users as expected");
35
- t.end();
36
- });
37
-});
0 commit comments