We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7228a54 commit cfbb9e4Copy full SHA for cfbb9e4
Tests/AppTests/LiveTests.swift
@@ -12,18 +12,21 @@
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
+import Foundation
16
+
17
@testable import App
18
19
import Dependencies
-import XCTVapor
-
20
+import Testing
21
+import Vapor
22
-class LiveTests: XCTestCase {
23
- func test_Mastodon_post() async throws {
24
- // Only run this test manually to confirm posting works
25
- try XCTSkipIf(true)
+@Suite struct LiveTests {
26
+ @Test(
27
+ .disabled("Only run this test manually to confirm posting works")
28
+ )
29
+ func Mastodon_post() async throws {
30
try await withDependencies {
31
$0.environment.mastodonCredentials = { .dev }
32
$0.httpClient = .liveValue
0 commit comments