mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-21 13:55:54 +00:00
fix: use proper Swift Testing skip mechanism in NgrokServiceTests
Replace TestFixtures.TestError.skip with #require macro for better Swift Testing compatibility
This commit is contained in:
parent
865858ccac
commit
51722bdd7e
1 changed files with 1 additions and 3 deletions
|
|
@ -359,9 +359,7 @@ struct NgrokServiceTests {
|
|||
let service = NgrokService.shared
|
||||
|
||||
// Check if we have an auth token
|
||||
guard service.hasAuthToken else {
|
||||
throw TestFixtures.TestError.skip("Ngrok auth token not configured")
|
||||
}
|
||||
try #require(service.hasAuthToken, "Ngrok auth token not configured")
|
||||
|
||||
// This would require actual ngrok installation
|
||||
// For now, just verify the service is ready
|
||||
|
|
|
|||
Loading…
Reference in a new issue