Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
anttiharju committed Aug 9, 2024
1 parent e645300 commit d0229db
Show file tree
Hide file tree
Showing 3 changed files with 250 additions and 356 deletions.
8 changes: 4 additions & 4 deletions __tests__/bundle-size.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ nock('http://assets.example')
.head('/prototype.js')
.reply(200, undefined, {
// @ts-ignore
'Content-Length': 123456
'Content-Length': '123456'
})
.head('/scriptaculous.js')
.reply(200, undefined, {
// @ts-ignore
'Content-Length': 654321
'Content-Length': '654321'
})
.head('/blueprint.css')
.reply(200, undefined, {
// @ts-ignore
'Content-Length': 1000000
'Content-Length': '1000000'
})
.head('/error.js')
.reply(404, undefined, {
// @ts-ignore
'Content-Length': 1
'Content-Length': '1'
})

describe('bundleSize', () => {
Expand Down
Loading

0 comments on commit d0229db

Please sign in to comment.