1 #if LV_BUILD_TEST
2 
3 #include "lv_test_helpers.h"
4 
lv_test_wait(uint32_t ms)5 void lv_test_wait(uint32_t ms)
6 {
7     lv_tick_inc(ms);
8     lv_timer_handler();
9     lv_refr_now(NULL);
10 }
11 
12 #endif
13