mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
22 lines
404 B
Lua
22 lines
404 B
Lua
-- Test status constants
|
|
-- Defines the possible states for test results
|
|
|
|
---@class TestStatus
|
|
local M = {}
|
|
|
|
---@alias TestStatusValue "passed" | "failed" | "skipped" | "pending"
|
|
|
|
---Test passed successfully
|
|
M.PASSED = "passed"
|
|
|
|
---Test failed with an error
|
|
M.FAILED = "failed"
|
|
|
|
---Test was skipped
|
|
M.SKIPPED = "skipped"
|
|
|
|
---Test is pending execution
|
|
M.PENDING = "pending"
|
|
|
|
return M
|