Skip to content

Commit

Permalink
[test] Fix font loading logic
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Feb 22, 2020
1 parent 9e6932d commit 1c6fe61
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
hub:
image: selenium/hub:3.11.0
image: selenium/hub:3.141.0
ports:
- 4444:4444
chrome:
image: selenium/node-chrome:3.11.0
image: selenium/node-chrome:3.141.0
links:
- hub
2 changes: 1 addition & 1 deletion docs/src/pages/components/icons/FontAwesome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function FontAwesome() {

React.useEffect(() => {
loadCSS(
'https://use.fontawesome.com/releases/v5.1.0/css/all.css',
'https://use.fontawesome.com/releases/v5.12.0/css/all.css',
document.querySelector('#font-awesome-css'),
);
}, []);
Expand Down
2 changes: 1 addition & 1 deletion test/regressions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ vrtest.before(() => {
families: ['Roboto:300,400,500,700', 'Material+Icons'],
},
custom: {
families: ['Font Awesome 5 Free:400,900'],
families: ['Font Awesome 5 Free:n9'],
urls: ['https://use.fontawesome.com/releases/v5.1.0/css/all.css'],
},
timeout: 20000,
Expand Down

0 comments on commit 1c6fe61

Please sign in to comment.