• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

supabase / supabase-swift / 12883918246

21 Jan 2025 09:27AM UTC coverage: 54.089% (+5.8%) from 48.322%
12883918246

Pull #645

github

web-flow
Merge 79a8b9ff5 into 37a32aef8
Pull Request #645: test: integration tests revamp

5 of 69 new or added lines in 9 files covered. (7.25%)

22 existing lines in 2 files now uncovered.

3704 of 6848 relevant lines covered (54.09%)

11.3 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/Sources/Storage/StorageError.swift
1
import Foundation
2

3
public struct StorageError: Error, Decodable, Sendable {
4
  public var statusCode: String?
5
  public var message: String
6
  public var error: String?
7

NEW
8
  public init(statusCode: String? = nil, message: String, error: String? = nil) {
×
9
    self.statusCode = statusCode
×
10
    self.message = message
×
11
    self.error = error
×
12
  }
×
13
}
14

15
extension StorageError: LocalizedError {
16
  public var errorDescription: String? {
×
17
    message
×
18
  }
×
19
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc