Skip to content

Commit 2ee8886

Browse files
committed
fix test
1 parent 94e8210 commit 2ee8886

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/uui-table/lib/uui-table-row.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
oneEvent,
77
} from '@open-wc/testing';
88

9-
import './uui-table.element';
9+
import '.';
1010
import { UUITableRowElement } from './uui-table-row.element';
1111

1212
describe('UuiTableRow', () => {
@@ -51,7 +51,7 @@ describe('UuiTableRow', () => {
5151
it('emits a selected event when selectable', async () => {
5252
element.selectable = true;
5353
await elementUpdated(element);
54-
const listener = oneEvent(element, 'selected', false);
54+
const listener = oneEvent(element, 'selected');
5555
element.click();
5656
const event = await listener;
5757
expect(event).to.exist;

0 commit comments

Comments
 (0)