Skip to content

Commit a9b8866

Browse files
committed
regenerate snapshots
1 parent d1226d7 commit a9b8866

17 files changed

Lines changed: 30 additions & 0 deletions

tests/app.d/ui_table.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,3 +298,30 @@ def t_selection_component():
298298
),
299299
],
300300
)
301+
302+
t_databar_text_color = ui.table(
303+
_stocks,
304+
format_=[
305+
ui.TableFormat(
306+
cols="Size", color="red", mode=ui.TableDatabar(color="purple-800")
307+
),
308+
],
309+
)
310+
311+
t_databar_gradient_text_color = ui.table(
312+
_stocks,
313+
format_=[
314+
ui.TableFormat(
315+
cols="Size",
316+
color="orange",
317+
mode=ui.TableDatabar(color=["negative", "positive"]),
318+
),
319+
],
320+
)
321+
322+
t_databar_pos_neg_text_color = ui.table(
323+
_stocks,
324+
format_=[
325+
ui.TableFormat(cols="Random", color="info", mode=ui.TableDatabar()),
326+
],
327+
)

tests/ui_table.spec.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ test.describe('UI table', () => {
2222
't_databar_priority',
2323
't_databar_mixed',
2424
't_databar_gradient',
25+
't_databar_text_color',
26+
't_databar_gradient_text_color',
27+
't_databar_pos_neg_text_color',
2528
].forEach(name => {
2629
test(name, async ({ page }) => {
2730
await gotoPage(page, '');
-3.27 KB
Loading
-3.94 KB
Loading
-3.4 KB
Loading
76 KB
Loading
127 KB
Loading
81 KB
Loading
-64 Bytes
Loading
-125 Bytes
Loading

0 commit comments

Comments
 (0)