From 73e2907750725fba80df5db53d5cd4298e789a5f Mon Sep 17 00:00:00 2001 From: Marcin Stepnowski Date: Tue, 7 May 2024 21:55:48 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix(EnterBarcodePageUITests.swif?= =?UTF-8?q?t):=20skip=20tests=20related=20to=20issue=20353?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PolaUITests/Tests/EnterBarcodePageUITests.swift | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/BuyPolish/PolaUITests/Tests/EnterBarcodePageUITests.swift b/BuyPolish/PolaUITests/Tests/EnterBarcodePageUITests.swift index d3ebd4c5c..d875b8000 100644 --- a/BuyPolish/PolaUITests/Tests/EnterBarcodePageUITests.swift +++ b/BuyPolish/PolaUITests/Tests/EnterBarcodePageUITests.swift @@ -80,7 +80,8 @@ final class EnterBarcodePageUITests: PolaUITestCase { snapshotVerifyView() } - func testPaste() { + func testPaste() throws { + throw skipTest(issueNumber: 353) page.setPasteboard("123456789") .longTapOnBarcodeLabel() .tapPasteAction() @@ -90,7 +91,8 @@ final class EnterBarcodePageUITests: PolaUITestCase { snapshotVerifyView() } - func testPasteAndActivate() { + func testPasteAndActivate() throws { + throw skipTest(issueNumber: 353) page.setPasteboard("123456789") .longTapOnBarcodeLabel() .tapPasteAndActivateAction() @@ -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() @@ -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()