Skip to content

Commit

Permalink
🔧 fix(EnterBarcodePageUITests.swift): skip tests related to issue 353
Browse files Browse the repository at this point in the history
  • Loading branch information
WezSieTato committed May 7, 2024
1 parent 2a23b6e commit 73e2907
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions BuyPolish/PolaUITests/Tests/EnterBarcodePageUITests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ final class EnterBarcodePageUITests: PolaUITestCase {
snapshotVerifyView()
}

func testPaste() {
func testPaste() throws {
throw skipTest(issueNumber: 353)
page.setPasteboard("123456789")
.longTapOnBarcodeLabel()
.tapPasteAction()
Expand All @@ -90,7 +91,8 @@ final class EnterBarcodePageUITests: PolaUITestCase {
snapshotVerifyView()
}

func testPasteAndActivate() {
func testPasteAndActivate() throws {
throw skipTest(issueNumber: 353)
page.setPasteboard("123456789")
.longTapOnBarcodeLabel()
.tapPasteAndActivateAction()
Expand All @@ -110,7 +112,8 @@ final class EnterBarcodePageUITests: PolaUITestCase {
snapshotVerifyView()
}

func testCut() {
func testCut() throws {
throw skipTest(issueNumber: 353)
let input = "12345"
page.inputBarcode(input)
.longTapOnBarcodeLabel()
Expand All @@ -122,7 +125,8 @@ final class EnterBarcodePageUITests: PolaUITestCase {
XCTAssertEqual(page.pasteboard, input)
}

func testCopy() {
func testCopy() throws {
throw skipTest(issueNumber: 353)
let input = "12345"
page.inputBarcode(input)
.longTapOnBarcodeLabel()
Expand Down

0 comments on commit 73e2907

Please sign in to comment.