diff --git a/tests/integration/components/es-sidebar-test.js b/tests/integration/components/es-sidebar-test.js index 741ba3e6..59812cda 100644 --- a/tests/integration/components/es-sidebar-test.js +++ b/tests/integration/components/es-sidebar-test.js @@ -27,46 +27,4 @@ module('Integration | Component | es-sidebar', function (hooks) { await click('.es-sidebar-close'); assert.dom('.es-sidebar').hasAttribute('aria-expanded', 'false'); }); - - test('it has the correct styles when in a .sidebar-container', async function (assert) { - await render(hbs` - - `); - - assert.dom('.sidebar-container .es-sidebar').hasStyle({ - width: '300px', - }); - - await render(hbs` - - `); - - assert.dom('[data-test-content-left]').hasStyle({ - width: '604px', - }); - assert.dom('.sidebar-container .es-sidebar').hasStyle({ - width: '300px', - margin: '0px', - }); - - await render(hbs` - - `); - - assert.dom('.sidebar-container .es-sidebar').hasStyle({ - width: '300px', - margin: '0px', - }); - assert.dom('[data-test-content-right]').hasStyle({ - width: '604px', - }); - }); });