diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2023-01-11 21:47:54 -0500 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2023-01-11 21:47:54 -0500 |
commit | 46bf49a25bd772413576d26e8a80020aaae7c9dd (patch) | |
tree | a5f2f1889b62691e98062e19183d3c4faf48b765 /t | |
parent | b371dcb9903266bf5ff15d6a97c02f7b1233d878 (diff) | |
download | lite-xl-plugin-manager-46bf49a25bd772413576d26e8a80020aaae7c9dd.tar.gz lite-xl-plugin-manager-46bf49a25bd772413576d26e8a80020aaae7c9dd.zip |
Fixed error handling, and fixed plugin difference call.
Diffstat (limited to 't')
-rw-r--r-- | t/run.lua | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -104,6 +104,10 @@ local tests = { assert(plugins[1].organization == "complex") assert(plugins[1].status == "installed") end, + ["04_list_plugins"] = function() + local plugins = lpm("list")["plugins"] + assert(#plugins > 20) + end } |