Skip to content

Commit e4bf23f

Browse files
committed
linting fixes
1 parent a2b8563 commit e4bf23f

File tree

1 file changed

+4
-3
lines changed
  • showcase/tests/integration/components/hds/layout/flex

1 file changed

+4
-3
lines changed

showcase/tests/integration/components/hds/layout/flex/index-test.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ module('Integration | Component | hds/layout/flex/index', function (hooks) {
9393

9494
test('it should render the element without `gap` class if no @gap is declared', async function (assert) {
9595
await render(hbs`<Hds::Layout::Flex id="test-layout-flex" />`);
96-
assert.dom('#test-layout-flex')
96+
assert
97+
.dom('#test-layout-flex')
9798
.doesNotHaveClass(/hds-layout-flex--gap-/)
9899
.doesNotHaveClass(/hds-layout-flex--row-gap-/)
99100
.doesNotHaveClass(/hds-layout-flex--column-gap-/);
@@ -106,7 +107,8 @@ module('Integration | Component | hds/layout/flex/index', function (hooks) {
106107
await render(
107108
hbs`<Hds::Layout::Flex id="test-layout-flex" @gap={{array "4" "48"}} />`
108109
);
109-
assert.dom('#test-layout-flex')
110+
assert
111+
.dom('#test-layout-flex')
110112
.hasClass('hds-layout-flex--row-gap-4')
111113
.hasClass('hds-layout-flex--column-gap-48');
112114
});
@@ -161,5 +163,4 @@ module('Integration | Component | hds/layout/flex/index', function (hooks) {
161163
throw new Error(errorMessage);
162164
});
163165
});
164-
165166
});

0 commit comments

Comments
 (0)