We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aab0b4 commit cd7196fCopy full SHA for cd7196f
Tests/SharingGRDBTests/FetchTests.swift
@@ -21,12 +21,6 @@ struct FetchTests {
21
#expect(records == [Record(id: 2), Record(id: 3)])
22
}
23
24
- @Test func bareFetchCount() async throws {
25
- @FetchOne var recordsCount = 0
26
- try await Task.sleep(nanoseconds: 100_000_000)
27
- #expect(recordsCount == 3)
28
- }
29
-
30
@Test func fetchCountWithQuery() async throws {
31
@FetchOne(Record.where { $0.id > 1 }.count()) var recordsCount = 0
32
try await Task.sleep(nanoseconds: 100_000_000)
0 commit comments