Skip to content

Commit

Permalink
test: fix modules path
Browse files Browse the repository at this point in the history
  • Loading branch information
SevereCloud committed Oct 28, 2024
1 parent c89765a commit 0c632b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { baselineComponent, userEvent, waitForFloatingPosition } from '../../tes
import { Avatar } from '../Avatar/Avatar';
import { CustomSelectOption } from '../CustomSelectOption/CustomSelectOption';
import { CustomSelect, type CustomSelectRenderOption, type SelectProps } from './CustomSelect';
import styles from './CustomSelectDropdown.module.css';
import styles from './CustomSelect.module.css';

let placementStub: Placement | undefined = undefined;
jest.mock('../../lib/floating', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { render, screen } from '@testing-library/react';
import { baselineComponent } from '../../testing/utils';
import { CUSTOM_CSS_TOKEN_FOR_CELL_WIDTH, HorizontalCell } from './HorizontalCell';
import styles from './HorizontaCell.module.css';
import styles from './HorizontalCell.module.css';

describe('HorizontalCell', () => {
baselineComponent((props) => <HorizontalCell {...props}>HorizontalCell</HorizontalCell>);
Expand Down

0 comments on commit 0c632b3

Please sign in to comment.