lune/tests/process/exit.luau

15 lines
381 B
Lua
Raw Normal View History

2023-02-06 00:13:58 +00:00
local function assert(condition, err)
if not condition then
console.error(err)
process.exit(0)
end
end
local path = process.cwd .. "asdfghjkl"
assert(fs.isDir(path), "Process should exit with success")
assert(fs.isDir(path), "Process should exit with success")
assert(fs.isDir(path), "Process should exit with success")
error("Process should have exited with success...")