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<ExtendedTestContext>('It adds the proper class above to trigger and content when it receives `renderInPlace={{true}}` and @verticalPosition="auto"',asyncfunction(assert){
1662
+
assert.expect(2);
1663
+
1664
+
awaitrender(hbs`
1665
+
<div style="position: absolute; bottom: 0">
1666
+
<BasicDropdown @renderInPlace={{true}} @verticalPosition="auto" as |dropdown|>
1667
+
<dropdown.Trigger>Press me</dropdown.Trigger>
1668
+
<dropdown.Content><h3>Content of the dropdown</h3></dropdown.Content>
test<ExtendedTestContext>('It adds the proper class below to trigger and content when it receives `renderInPlace={{true}}` and @verticalPosition="auto"',asyncfunction(assert){
1694
+
assert.expect(2);
1695
+
1696
+
awaitrender(hbs`
1697
+
<div style="position: absolute; top: 0">
1698
+
<BasicDropdown @renderInPlace={{true}} @verticalPosition="auto" as |dropdown|>
1699
+
<dropdown.Trigger>Press me</dropdown.Trigger>
1700
+
<dropdown.Content><h3>Content of the dropdown</h3></dropdown.Content>
0 commit comments