Files
code-utils/team_integration_test.go
2026-08-15 17:18:00 +08:00

17 lines
417 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package main
// 团队协作集成测试(需可访问的 nl-pms-api
// 设置环境变量 TEST_API_URL 后才会跑;否则跳过。
import (
"os"
"testing"
)
func TestTeamFlowIntegration(t *testing.T) {
if os.Getenv("TEST_API_URL") == "" {
t.Skip("set TEST_API_URL to run API integration tests")
}
t.Skip("API integration harness not wired in this build; use manual smoke against TEST_API_URL")
}