import Testing @testable import CardsNative @Suite("AppConfig") struct AppConfigTests { @Test("Cards-API zeigt auf cardecky-api.mana.how") func apiBaseURLPointsToCardecky() { #expect(AppConfig.apiBaseURL.absoluteString == "https://cardecky-api.mana.how") } @Test("Auth zeigt auf auth.mana.how") func authBaseURLPointsToManaAuth() { #expect(AppConfig.manaAppConfig.authBaseURL.absoluteString == "https://auth.mana.how") } @Test("Keychain-Service ist ev.mana.cards") func keychainServiceIsAppSpecific() { #expect(AppConfig.manaAppConfig.keychainService == "ev.mana.cards") } }