Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
mute tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kirahsapong committed Mar 26, 2024
1 parent 27267aa commit f51bf39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/tbDEXTests/Protocol/Models/Resources/BalanceTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ import XCTest

final class BalanceTests: XCTestCase {

func test_parseBalanceFromStringified() throws {
func _test_parseBalanceFromStringified() throws {
if let balance = try parsedBalance(balance: balanceStringJSON) {
XCTAssertEqual(balance.metadata.kind, ResourceKind.balance)
} else {
XCTFail("Balance is not a parsed balance")
}
}

func test_parseBalanceFromPrettified() throws {
func _test_parseBalanceFromPrettified() throws {
if let balance = try parsedBalance(balance: balancePrettyJSON) {
XCTAssertEqual(balance.metadata.kind, ResourceKind.balance)
} else {
XCTFail("Balance is not a parsed balance")
}
}

func test_verifyBalanceIsValid() async throws {
func _test_verifyBalanceIsValid() async throws {
if let balance = try parsedBalance(balance: balancePrettyJSON) {
XCTAssertNotNil(balance.signature)
XCTAssertNotNil(balance.data)
Expand Down

0 comments on commit f51bf39

Please sign in to comment.