Skip to content

Commit

Permalink
Unskip tests that now pass in Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
jattasNI committed Mar 15, 2024
1 parent 2f134ba commit 64bdf6c
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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();
Expand Down

0 comments on commit 64bdf6c

Please sign in to comment.