diff options
| author | 2024-09-27 09:33:01 -0400 | |
|---|---|---|
| committer | 2024-09-27 09:33:01 -0400 | |
| commit | 68ce253ca289030922581b10a34094750c34d729 (patch) | |
| tree | 24a8d2a158794a0e42b5a154d3cf595188bd7227 /test/env_test.lua | |
| parent | fixed chaining execution attempting to execute operator (diff) | |
added exit api function
Diffstat (limited to 'test/env_test.lua')
| -rw-r--r-- | test/env_test.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/env_test.lua b/test/env_test.lua index 972a730..4a0d9d2 100644 --- a/test/env_test.lua +++ b/test/env_test.lua @@ -20,6 +20,7 @@ if lush.getenv("ENVTEST") == "envtest" then print("setenv test passed ✅\n") else print("setenv test failed ❌\n") + lush.exit() end lush.unsetenv("ENVTEST") @@ -27,4 +28,5 @@ if lush.getenv("ENVTEST") == nil then print("unsetenv test passed ✅\n") else print("unsetenv test failed ❌\n") + lush.exit() end |
