Skip to content

Commit

Permalink
test: fix a firefox test failing locally
Browse files Browse the repository at this point in the history
  • Loading branch information
tomivirkki committed Oct 2, 2024
1 parent 91ebeb4 commit 5393211
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/dashboard/test/dashboard.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ describe('dashboard', () => {
await nextFrame();
});

it('should render a widget for each item', () => {
it('should render a widget for each item', async () => {
await nextFrame();
const widgets = [getElementFromCell(dashboard, 0, 0), getElementFromCell(dashboard, 0, 1)];
widgets.forEach((widget, index) => {
expect(widget).to.be.ok;
Expand Down

0 comments on commit 5393211

Please sign in to comment.