Files
kjol/tools/tsgo/internal/execute/tsctests/testmain_test.go
2026-07-09 16:50:43 -04:00

15 lines
255 B
Go

package tsctests
import (
"testing"
"github.com/microsoft/typescript-go/internal/core"
"github.com/microsoft/typescript-go/internal/testutil/baseline"
)
func TestMain(m *testing.M) {
core.ApplyDebugStackLimit()
defer baseline.Track()()
m.Run()
}