0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 03:31:50 +02:00

test: test_extreme.py test_init_config new config tested

This commit is contained in:
wyzula-jan
2023-10-02 16:26:05 +02:00
parent 0ec65a0b41
commit daf4ee190e

View File

@ -49,8 +49,8 @@ config_device_mode_all_filled = {
config_device_mode_no_entry = {
"plot_settings": {
"background_color": "black",
"num_columns": 2,
"background_color": "white",
"num_columns": 1,
"colormap": "plasma",
"scan_types": False,
},
@ -161,6 +161,7 @@ config_scan_mode = config = {
"config, plot_setting_bg, num_plot ,pg_background",
[
(config_device_mode_all_filled, "black", 2, "k"),
(config_device_mode_no_entry, "white", 2, "w"),
# (config_scan_mode, "white", 5, "w") #TODO fix the extreme plot function to be able to init the plot before scan mode
],
)