Browse Source

Fixing Travis Build errors!

pull/92/head
Abhishek 5 years ago
parent
commit
bf9a4a47c9
  1. 8
      Clocker/ClockerUITests/OnboardingSearchTests.swift

8
Clocker/ClockerUITests/OnboardingSearchTests.swift

@ -5,7 +5,9 @@ import XCTest
class OnboardingSearchTests: XCTestCase {
var app: XCUIApplication!
override func setUpWithError() throws {
override func setUp() {
super.setUp()
continueAfterFailure = false
app = XCUIApplication()
app.launchArguments.append(CLOnboaringTestsLaunchArgument)
@ -17,10 +19,6 @@ class OnboardingSearchTests: XCTestCase {
moveForward()
}
override func tearDownWithError() throws {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}
func testRegularSearch() throws {
let searchField = app.searchFields["MainSearchField"]
searchField.reset(text: "Paris")

Loading…
Cancel
Save