Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

[WIP] Try to add back in tabs integration tests #214

Closed
Closed
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
26 changes: 26 additions & 0 deletions test/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,32 @@ def test_gallery(self):
html.Div(id='waitfor'),
html.Label('Upload'),
dcc.Upload(),

html.Label('Horizontal Tabs'),
html.Div([
dcc.Tabs(
children=[
dcc.Tab(label='Tab one', children=[
html.Div([
html.H1("This is the content in tab 1"),
html.P("A graph here would be nice!")
])
]),
dcc.Tab(label='Tab two', children=[
html.Div([
html.H1("This is the content in tab 2"),
html.P("A graph here would be nice!")
])
]),
dcc.Tab(label='Tab three', children=[
html.Div([
html.H1("This is the content in tab 3"),
])
]),
],
)
]),

html.Label('Dropdown'),
dcc.Dropdown(
options=[
Expand Down