17 lines
417 B
Go
17 lines
417 B
Go
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")
|
||
}
|