diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2024-06-11 10:37:58 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2024-06-11 10:37:58 -0700 |
commit | 69c88da98ca1bba3ab1c890639aa0228f125c467 (patch) | |
tree | ed5d0a06eeeb97d205a905efe73bd8730e79cd32 /app.lua | |
parent | f2299cb422d0fc07a1b01f0c31f88e9ae5ab168f (diff) | |
download | view.love-69c88da98ca1bba3ab1c890639aa0228f125c467.tar.gz |
stop caching starty
This is quite useful because I used to have a long list of places in which to invalidate the cache.
Diffstat (limited to 'app.lua')
-rw-r--r-- | app.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app.lua b/app.lua index 5e61d47..274f38d 100644 --- a/app.lua +++ b/app.lua @@ -131,7 +131,7 @@ function App.run_tests() end table.sort(sorted_names) --? App.initialize_for_test() -- debug: run a single test at a time like these 2 lines ---? test_pagedown_skips_drawings() +--? test_click_moves_cursor() for _,name in ipairs(sorted_names) do App.initialize_for_test() --? print('=== '..name) |