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

supabase / supabase-swift / 12886660635

21 Jan 2025 12:11PM UTC coverage: 54.731% (+6.4%) from 48.322%
12886660635

Pull #645

github

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

5 of 80 new or added lines in 9 files covered. (6.25%)

43 existing lines in 3 files now uncovered.

3679 of 6722 relevant lines covered (54.73%)

11.47 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