add gs
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
--[[
|
||||
Constants used throughout the testing framework.
|
||||
]]
|
||||
|
||||
local TestEnum = {}
|
||||
|
||||
TestEnum.TestStatus = {
|
||||
Success = "Success",
|
||||
Failure = "Failure",
|
||||
Skipped = "Skipped"
|
||||
}
|
||||
|
||||
TestEnum.NodeType = {
|
||||
Try = "Try",
|
||||
Describe = "Describe",
|
||||
It = "It"
|
||||
}
|
||||
|
||||
TestEnum.NodeModifier = {
|
||||
None = "None",
|
||||
Skip = "Skip",
|
||||
Focus = "Focus"
|
||||
}
|
||||
|
||||
return TestEnum
|
||||
Reference in New Issue
Block a user