Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Fix act errors in SubMenu test #21387

Merged
merged 1 commit into from
Sep 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 15 additions & 13 deletions superset-frontend/src/views/components/SubMenu.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const mockedProps = {
],
dropDownLinks: [
{
label: 'test a upload',
label: 'test an upload',
childs: [
{
label: 'Upload Test',
Expand All @@ -58,29 +58,31 @@ const mockedProps = {
],
};

test('should render', () => {
test('should render', async () => {
const { container } = render(<SubMenu {...mockedProps} />);
expect(await screen.findByText(/title/i)).toBeInTheDocument();
expect(container).toBeInTheDocument();
});

test('should render the navigation', () => {
test('should render the navigation', async () => {
render(<SubMenu {...mockedProps} />);
expect(screen.getByRole('navigation')).toBeInTheDocument();
expect(await screen.findByRole('navigation')).toBeInTheDocument();
});

test('should render the brand', () => {
test('should render the brand', async () => {
render(<SubMenu {...mockedProps} />);
expect(screen.getByText('Title')).toBeInTheDocument();
expect(await screen.findByText('Title')).toBeInTheDocument();
});

test('should render the right number of tabs', () => {
test('should render the right number of tabs', async () => {
render(<SubMenu {...mockedProps} />);
expect(screen.getAllByRole('tab')).toHaveLength(3);
expect(await screen.findAllByRole('tab')).toHaveLength(3);
});

test('should render all the tabs links', () => {
test('should render all the tabs links', async () => {
const { tabs } = mockedProps;
render(<SubMenu {...mockedProps} />);
expect(await screen.findAllByRole('tab')).toHaveLength(3);
tabs.forEach(tab => {
const tabItem = screen.getByText(tab.label);
expect(tabItem).toHaveAttribute('href', tab.url);
Expand All @@ -89,12 +91,12 @@ test('should render all the tabs links', () => {

test('should render dropdownlinks', async () => {
render(<SubMenu {...mockedProps} />);
userEvent.hover(screen.getByText('test a upload'));
const label = await screen.findByText('test a upload');
userEvent.hover(screen.getByText('test an upload'));
const label = await screen.findByText('test an upload');
expect(label).toBeInTheDocument();
});

test('should render the buttons', () => {
test('should render the buttons', async () => {
const mockFunc = jest.fn();
const buttons = [
{
Expand All @@ -114,7 +116,7 @@ test('should render the buttons', () => {
};
render(<SubMenu {...buttonsProps} />);
const testButton = screen.getByText(buttons[0].name);
expect(screen.getAllByRole('button')).toHaveLength(3);
expect(await screen.findAllByRole('button')).toHaveLength(3);
userEvent.click(testButton);
expect(mockFunc).toHaveBeenCalled();
});