Kurdtvs-Live-Kurdish-TV-Kur.../MastodonSDK/Tests/MastodonSDKTests/MastodonSDKTests.swift

20 lines
487 B
Swift

import XCTest
import Combine
@testable import MastodonSDK
final class MastodonSDKTests: XCTestCase {
var disposeBag = Set<AnyCancellable>()
let session = URLSession(configuration: .ephemeral)
var domain: String { MastodonSDKTests.environmentVariable(key: "domain") }
// TODO: replace with test account token
var testToken = ""
static func environmentVariable(key: String) -> String {
return ProcessInfo.processInfo.environment[key]!
}
}