it('should display the best new music page of the dashboard', async () => {
    const { component } = mountComponent();
    await waitFor(() => component.getByText(/Best new music/i).click());
    expect(component.asFragment()).toMatchSnapshot();
  });