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

17 lines
450 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如 http://127.0.0.1:8788后才会跑否则跳过。
import (
"os"
"testing"
)
func TestSyncFlowIntegration(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")
}