Changed username and password to secure hashes so that the plaintext is no longer hard-coded in

This commit is contained in:
Isaac Greene 2022-07-07 00:10:47 -04:00
parent acc9f86315
commit a0b834a505
16 changed files with 511 additions and 44 deletions

View file

@ -0,0 +1,32 @@
//
// PacesUITestsLaunchTests.swift
// PacesUITests
//
// Created by Isaac Greene on 7/6/22.
//
import XCTest
class PacesUITestsLaunchTests: XCTestCase {
override class var runsForEachTargetApplicationUIConfiguration: Bool {
true
}
override func setUpWithError() throws {
continueAfterFailure = false
}
func testLaunch() throws {
let app = XCUIApplication()
app.launch()
// Insert steps here to perform after app launch but before taking a screenshot,
// such as logging into a test account or navigating somewhere in the app
let attachment = XCTAttachment(screenshot: app.screenshot())
attachment.name = "Launch Screen"
attachment.lifetime = .keepAlways
add(attachment)
}
}