Skip to content

Commit

Permalink
test(client): fix bundle test to have right content type
Browse files Browse the repository at this point in the history
  • Loading branch information
knagaitsev committed Jul 2, 2020
1 parent 760e33d commit b9757d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/client/bundle.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('bundle', () => {
it('should get full user bundle and parse with ES5', async () => {
const { text } = await req
.get('/main.js')
.expect('Content-Type', 'application/javascript; charset=UTF-8')
.expect('Content-Type', 'application/javascript; charset=utf-8')
.expect(200);

expect(() => {
Expand Down

0 comments on commit b9757d0

Please sign in to comment.