Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed May 21, 2024
1 parent fe07ff5 commit cff6568
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
8 changes: 3 additions & 5 deletions website/src/components/SearchPage/SearchFullUI.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/* eslint-disable @typescript-eslint/explicit-member-accessibility */
/* eslint-disable @typescript-eslint/no-empty-function */

import { render, screen, act } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { render, screen } from '@testing-library/react';
import { beforeEach, describe, expect, test, vi } from 'vitest';

import { SearchFullUI } from './SearchFullUI';
Expand Down Expand Up @@ -92,7 +91,7 @@ describe('SearchFullUI', () => {
expect(screen.getByText('Field 2')).toBeDefined();
expect(screen.getByLabelText('Field 3')).toBeDefined();
});
/*
/*
test('should redirect according to filters', async () => {
renderSearchFullUI();
Expand Down Expand Up @@ -171,7 +170,7 @@ describe('SearchFullUI', () => {
throw new Error('Date field not found');
}
});
/*
/*
test('toggle field visibility', async () => {
renderSearchFullUI({});
Expand All @@ -192,4 +191,3 @@ describe('SearchFullUI', () => {
});
*/
});

1 change: 0 additions & 1 deletion website/src/components/SearchPage/SearchFullUI.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ export const InnerSearchFullUI = ({
};

const lapisUrl = getLapisUrl(clientConfig, organism);


const consolidatedMetadataSchema = consolidateGroupedFields(metadataSchemaWithExpandedRanges);

Expand Down

0 comments on commit cff6568

Please sign in to comment.