forked from shadowfacts/Tusker
27 lines
435 B
Swift
27 lines
435 B
Swift
//
|
|
// MyProfileTests.swift
|
|
// TuskerUITests
|
|
//
|
|
// Created by Shadowfacts on 12/31/19.
|
|
// Copyright © 2019 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import XCTest
|
|
|
|
class MyProfileTests: TuskerUITests {
|
|
|
|
override func setUp() {
|
|
super.setUp()
|
|
|
|
router.allRoutes()
|
|
|
|
app.launchEnvironment["UI_TESTING_LOGIN"] = "true"
|
|
app.launch()
|
|
}
|
|
|
|
func testExample() {
|
|
sleep(10000000)
|
|
}
|
|
|
|
}
|