Skip to content

Commit 3bfbfac

Browse files
committed
Revert firefox workaround
1 parent a2085b6 commit 3bfbfac

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

test/browser/dragFill.test.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,7 @@ test('should update single row using mouse', async () => {
7070
await commands.dragFill('a1', 'a2');
7171
await expect.element(getCellsAtRowIndex(1)[0]).toHaveTextContent('a1');
7272
await expect.element(getCellsAtRowIndex(2)[0]).toHaveTextContent('a3');
73-
// https://bugzilla.mozilla.org/show_bug.cgi?id=1961462
74-
const rowIdx = navigator.userAgent.includes('Firefox') ? 1 : 0;
75-
await expect.element(getCellsAtRowIndex(rowIdx)[0]).toHaveFocus();
73+
await expect.element(getCellsAtRowIndex(0)[0]).toHaveFocus();
7674
});
7775

7876
test('should update multiple rows using mouse', async () => {

0 commit comments

Comments
 (0)