Skip to content

Commit

Permalink
Fix some Embroider optimized issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Windvis committed Nov 7, 2024
1 parent dd97560 commit 2268219
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module(
setupRenderingTest(hooks);

test('it renders', async function (assert) {
await render(hbs`{{au-data-table-content-header}}`);
await render(hbs`<AuDataTableContentHeader />`);
assert.dom('thead').exists({ count: 1 });

assert.dom('*').hasText('');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,6 @@ module(
function (hooks) {
setupRenderingTest(hooks);

test('it renders', async function (assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.on('myAction', function(val) { ... });

await render(hbs`{{au-data-table-menu-general}}`);

assert.dom('*').hasText('');
});

test('it renders block only if data table selection is empty', async function (assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.on('myAction', function(val) { ... });
Expand Down

0 comments on commit 2268219

Please sign in to comment.