Skip to content

Commit 1c6fe61

Browse files
[test] Fix font loading logic
1 parent 9e6932d commit 1c6fe61

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
hub:
2-
image: selenium/hub:3.11.0
2+
image: selenium/hub:3.141.0
33
ports:
44
- 4444:4444
55
chrome:
6-
image: selenium/node-chrome:3.11.0
6+
image: selenium/node-chrome:3.141.0
77
links:
88
- hub

docs/src/pages/components/icons/FontAwesome.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default function FontAwesome() {
1919

2020
React.useEffect(() => {
2121
loadCSS(
22-
'https://use.fontawesome.com/releases/v5.1.0/css/all.css',
22+
'https://use.fontawesome.com/releases/v5.12.0/css/all.css',
2323
document.querySelector('#font-awesome-css'),
2424
);
2525
}, []);

test/regressions/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ vrtest.before(() => {
180180
families: ['Roboto:300,400,500,700', 'Material+Icons'],
181181
},
182182
custom: {
183-
families: ['Font Awesome 5 Free:400,900'],
183+
families: ['Font Awesome 5 Free:n9'],
184184
urls: ['https://use.fontawesome.com/releases/v5.1.0/css/all.css'],
185185
},
186186
timeout: 20000,

0 commit comments

Comments
 (0)