55463a9806
Swift code currently has no auto formatting. Add `swift-format` to the `treefmt-nix` config to get this formatted. As our existing Swift code uses 4-space formatting instead of the default 2-space, also adds a custom `.swift-format Test plan: - CI
19 lines
283 B
Swift
19 lines
283 B
Swift
//
|
|
// EXOTests.swift
|
|
// EXOTests
|
|
//
|
|
// Created by Sami Khan on 2025-11-22.
|
|
//
|
|
|
|
import Testing
|
|
|
|
@testable import EXO
|
|
|
|
struct EXOTests {
|
|
|
|
@Test func example() async throws {
|
|
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
|
|
}
|
|
|
|
}
|