This commit is contained in:
lx
2026-07-06 14:01:11 -04:00
commit c4f97d729d
16468 changed files with 935321 additions and 0 deletions
@@ -0,0 +1,26 @@
--to make ScriptAnalyzer Happy
describe = nil
step = nil
expect = nil
include = nil
-------------------------------
local Test = game.CoreGui.RobloxGui.Modules.Test4R
local startTest = require(Test.startTest)
local TextReporter = require(Test.Reporters.TextReporter)
local TeamCityReporter = require(Test.Reporters.TeamCityReporter)
local reporter = _G["TEAMCITY"] and TeamCityReporter or TextReporter
local AllTabsSwitch = require(script.Parent.Modules.BVT.AllTabsSwitch)
local function test()
describe.protected("Mobile Place Rhodium Basic Functional Test", function()
--include(YourFunctionalTest)
end)
end
function run()
startTest(test, reporter)
end
return run