()
| 464 | |
| 465 | |
| 466 | def test_funnel(): |
| 467 | fig = px.funnel( |
| 468 | x=[5, 4, 3, 3, 2, 1], |
| 469 | y=["A", "B", "C", "A", "B", "C"], |
| 470 | color=["0", "0", "0", "1", "1", "1"], |
| 471 | ) |
| 472 | assert len(fig.data) == 2 |
| 473 | |
| 474 | |
| 475 | def test_parcats_dimensions_max(backend): |