You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test('should render button with long text',async({ page })=>{
7
+
// TODO(FW-4599): remove ion-text-wrap class
7
8
awaitpage.setContent(
8
9
`
9
-
<ion-button>This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
10
+
<ion-button class="ion-text-wrap">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
test('should render small button with long text',async({ page })=>{
21
+
// TODO(FW-4599): remove ion-text-wrap class
20
22
awaitpage.setContent(
21
23
`
22
-
<ion-button size="small">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
24
+
<ion-button class="ion-text-wrap" size="small">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
test('should render large button with long text',async({ page })=>{
35
+
// TODO(FW-4599): remove ion-text-wrap class
33
36
awaitpage.setContent(
34
37
`
35
-
<ion-button size="large">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
38
+
<ion-button class="ion-text-wrap" size="large">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
test('should render block button with long text',async({ page })=>{
67
+
// TODO(FW-4599): remove ion-text-wrap class
63
68
awaitpage.setContent(
64
69
`
65
-
<ion-button expand="block">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
70
+
<ion-button class="ion-text-wrap" expand="block">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
test('should render full button with long text',async({ page })=>{
99
+
// TODO(FW-4599): remove ion-text-wrap class
93
100
awaitpage.setContent(
94
101
`
95
-
<ion-button expand="full">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
102
+
<ion-button class="ion-text-wrap" expand="full">This is the button that never ends it just goes on and on and on and on and on and on and on and on my friends</ion-button>
0 commit comments