Skip to content

Commit 446cf78

Browse files
authored
chore(): update deps (ionic-team#19437)
1 parent 0f05ea4 commit 446cf78

File tree

8 files changed

+219
-119
lines changed

8 files changed

+219
-119
lines changed

core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"tslib": "^1.10.0"
3535
},
3636
"devDependencies": {
37-
"@stencil/core": "1.4.0",
37+
"@stencil/core": "1.5.1",
3838
"@stencil/sass": "1.0.1",
3939
"@types/jest": "24.0.17",
4040
"@types/node": "12.7.1",
@@ -48,7 +48,7 @@
4848
"jest-cli": "24.8.0",
4949
"np": "^5.0.3",
5050
"pixelmatch": "4.0.2",
51-
"puppeteer": "1.19.0",
51+
"puppeteer": "1.20.0",
5252
"rollup": "1.19.4",
5353
"rollup-plugin-node-resolve": "5.2.0",
5454
"rollup-plugin-virtual": "^1.0.1",

core/scripts/testing/scripts.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@
55
document.documentElement.setAttribute('dir', 'rtl');
66
}
77

8+
if (window.location.search.indexOf('ionic:_testing=true') > -1) {
9+
const style = document.createElement('style');
10+
style.innerHTML = `
11+
* {
12+
caret-color: transparent !important;
13+
}`;
14+
document.head.appendChild(style);
15+
}
16+
817
window.Ionic = window.Ionic || {};
918
window.Ionic.config = window.Ionic.config || {};
1019

0 commit comments

Comments
 (0)