From 64bdf6c87b1dfdd283d062ad4a269c19f1692569 Mon Sep 17 00:00:00 2001 From: Jesse Attas Date: Fri, 15 Mar 2024 17:44:43 -0500 Subject: [PATCH] Unskip tests that now pass in Firefox --- .../src/table/components/header/tests/table-header.spec.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/nimble-components/src/table/components/header/tests/table-header.spec.ts b/packages/nimble-components/src/table/components/header/tests/table-header.spec.ts index 73afb916b5..fd72467373 100644 --- a/packages/nimble-components/src/table/components/header/tests/table-header.spec.ts +++ b/packages/nimble-components/src/table/components/header/tests/table-header.spec.ts @@ -46,8 +46,7 @@ describe('TableHeader', () => { expect(pageObject.isSortDescendingIconVisible()).toBeFalse(); }); - // Firefox skipped, see: https://github.com/ni/nimble/issues/1075 - it('has correct state when sorted ascending #SkipFirefox', async () => { + it('has correct state when sorted ascending', async () => { element.sortDirection = TableColumnSortDirection.ascending; element.firstSortedColumn = true; await waitForUpdatesAsync(); @@ -57,8 +56,7 @@ describe('TableHeader', () => { expect(pageObject.isSortDescendingIconVisible()).toBeFalse(); }); - // Firefox skipped, see: https://github.com/ni/nimble/issues/1075 - it('has correct state when sorted descending #SkipFirefox', async () => { + it('has correct state when sorted descending', async () => { element.sortDirection = TableColumnSortDirection.descending; element.firstSortedColumn = true; await waitForUpdatesAsync();