Skip to content

Commit

Permalink
add test case
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 committed Oct 14, 2023
1 parent 94d1414 commit 47cd211
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1321,6 +1321,12 @@ describe('Develop Greenwood With: ', function() {
done();
});

// https://github.com/ProjectEvergreen/greenwood/issues/1159
it('should not return a content-encoding header', function(done) {
expect(response.headers['content-encoding']).to.equal(undefined);
done();
});

it('should return the correct response body', function(done) {
expect(response.body).to.have.lengthOf(1);
done();
Expand Down

0 comments on commit 47cd211

Please sign in to comment.