From abeaf35ed56af0e11aaddc8a770620864d6844d3 Mon Sep 17 00:00:00 2001 From: Chris Manson Date: Thu, 22 Feb 2024 16:42:33 +0000 Subject: [PATCH] delete test that is covered by percy --- .../integration/components/es-sidebar-test.js | 42 ------------------- 1 file changed, 42 deletions(-) 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', - }); - }); });