mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
28 lines
429 B
Lua
28 lines
429 B
Lua
|
--[[
|
||
|
Constants used throughout the testing framework.
|
||
|
]]
|
||
|
|
||
|
local TestEnum = {}
|
||
|
|
||
|
TestEnum.TestStatus = {
|
||
|
Success = "Success",
|
||
|
Failure = "Failure",
|
||
|
Skipped = "Skipped"
|
||
|
}
|
||
|
|
||
|
TestEnum.NodeType = {
|
||
|
Describe = "Describe",
|
||
|
It = "It",
|
||
|
BeforeAll = "BeforeAll",
|
||
|
AfterAll = "AfterAll",
|
||
|
BeforeEach = "BeforeEach",
|
||
|
AfterEach = "AfterEach"
|
||
|
}
|
||
|
|
||
|
TestEnum.NodeModifier = {
|
||
|
None = "None",
|
||
|
Skip = "Skip",
|
||
|
Focus = "Focus"
|
||
|
}
|
||
|
|
||
|
return TestEnum
|