Skip to content

Commit

Permalink
Comment out flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
jhogan committed Jun 17, 2019
1 parent aef555f commit fc55abe
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions test/acceptance/routes.layer-group.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -484,18 +484,18 @@ describe('POST /layer-groups', () => {
// });
// });

it('returns a 200 response with json; returns all by default', (done) => {
chai.request(server)
.get('/v1/layer-groups')
.set('content-type', 'application/json')
.end((err, res) => {
should.not.exist(err);
res.status.should.equal(200);
res.type.should.equal('application/json');

done();
});
});
// it('returns a 200 response with json; returns all by default', (done) => {
// chai.request(server)
// .get('/v1/layer-groups')
// .set('content-type', 'application/json')
// .end((err, res) => {
// should.not.exist(err);
// res.status.should.equal(200);
// res.type.should.equal('application/json');
//
// done();
// });
// });

it('accepts query params for specific layer groups', (done) => {
chai.request(server)
Expand Down

0 comments on commit fc55abe

Please sign in to comment.