File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ local function loadtests(testfiles: { path.path })
6262 local success , err = pcall (luau .loadbypath , p , fenv )
6363
6464 if not success then
65- print ( `Error loading {path .format (p )}: {err }` )
65+ error ( `Failed to load test file {path .format (p )}: {err }` )
6666 end
6767 end
6868end
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ local asserts = require("./assert")
66local types = require ("./types" )
77local path = require ("@std/path" )
88
9- type Test = types .Test
10- type TestCase = types .TestCase
11- type TestSuite = types .TestSuite
12- type TestEnvironment = types .TestEnvironment
13- type TestReporter = types .TestReporter
14- type FailedTest = types .FailedTest
15- type TestRunResult = types .TestRunResult
9+ type Test = types .test
10+ type TestCase = types .testcase
11+ type TestSuite = types .testsuite
12+ type TestEnvironment = types .testenvironment
13+ type TestReporter = types .testreporter
14+ type FailedTest = types .failedtest
15+ type TestRunResult = types .testrunresult
1616
1717local runner = {}
1818
You can’t perform that action at this time.
0 commit comments