Skip to content

Commit

Permalink
Decrease number of expected preloads in safari (#10578)
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Feb 18, 2020
1 parent c706e1a commit c66f2f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/production/test/index.test.js
Expand Up @@ -477,7 +477,7 @@ describe('Production Usage', () => {
if (browserName === 'safari') {
const elements = await browser.elementsByCss('link[rel=preload]')
// 4 page preloads and 5 existing preloads for _app, commons, main, etc
expect(elements.length).toBe(13)
expect(elements.length).toBe(11)
} else {
const elements = await browser.elementsByCss('link[rel=prefetch]')
expect(elements.length).toBe(4)
Expand Down

0 comments on commit c66f2f7

Please sign in to comment.