From 1a43a5665e07f7d107e15edf001e90aea1360ae3 Mon Sep 17 00:00:00 2001 From: Varun Santhanam Date: Sun, 20 Aug 2023 18:07:08 -0700 Subject: [PATCH] Remove test target (#29) --- Package.swift | 5 ---- Tests/SafariUITests/SafariViewTests.swift | 36 ----------------------- 2 files changed, 41 deletions(-) delete mode 100644 Tests/SafariUITests/SafariViewTests.swift diff --git a/Package.swift b/Package.swift index a86347218..f3248ec5b 100644 --- a/Package.swift +++ b/Package.swift @@ -22,7 +22,6 @@ let package = Package( name: "WebAuthentication", targets: ["WebAuthentication"] ), - ], dependencies: [ .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"), @@ -41,9 +40,5 @@ let package = Package( name: "WebAuthentication", dependencies: [] ), - .testTarget( - name: "SafariUITests", - dependencies: ["SafariUI"] - ), ] ) diff --git a/Tests/SafariUITests/SafariViewTests.swift b/Tests/SafariUITests/SafariViewTests.swift deleted file mode 100644 index 9ee96b907..000000000 --- a/Tests/SafariUITests/SafariViewTests.swift +++ /dev/null @@ -1,36 +0,0 @@ -// SafariUI -// SafariViewTests.swift -// -// MIT License -// -// Copyright (c) 2021 Varun Santhanam -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the Software), to deal -// -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in all -// copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -// SOFTWARE. - -@testable import SafariUI -import XCTest - -final class SafariUITests: XCTestCase { - func testExample() throws { - // This is an example of a functional test case. - // Use XCTAssert and related functions to verify your tests produce the correct - // results. -// XCTAssertEqual(SafariView().text, "Hello, World!") - } -}