Skip to content

Commit

Permalink
removed log on test
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoMario committed Nov 24, 2019
1 parent 0062e01 commit 9acb9b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/empty.servers.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import * as path from 'path';
import * as express from 'express';
import { expect } from 'chai';
import * as request from 'supertest';
import { createApp } from './common/app';

Expand Down Expand Up @@ -30,6 +31,7 @@ describe(packageJson.name, () => {
.get(`/pets`)
.expect(400)
.then(r => {
console.log(r)
expect(r.body.message).to.be.a('string');
expect(r.body.message).to.be.eq("request.query should have required property 'type', request.query should have required property 'limit'");
}));
});

0 comments on commit 9acb9b7

Please sign in to comment.