mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 15:10:03 +00:00
28 lines
No EOL
429 B
Lua
28 lines
No EOL
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 |