File tree Expand file tree Collapse file tree 4 files changed +32
-0
lines changed
FirebaseSwiftUI/FirebaseEmailAuthSwiftUI
Sources/FirebaseEmailAuthSwiftUI
Tests/FirebaseEmailAuthSwiftUITests Expand file tree Collapse file tree 4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ .DS_Store
2+ /.build
3+ /Packages
4+ xcuserdata /
5+ DerivedData /
6+ .swiftpm /configuration /registries.json
7+ .swiftpm /xcode /package.xcworkspace /contents.xcworkspacedata
8+ .netrc
Original file line number Diff line number Diff line change 1+ // The Swift Programming Language
2+ // https://docs.swift.org/swift-book
Original file line number Diff line number Diff line change 1+ import Testing
2+ @testable import FirebaseEmailAuthSwiftUI
3+
4+ @Test func example( ) async throws {
5+ // Write your test here and use APIs like `#expect(...)` to check expected conditions.
6+ }
Original file line number Diff line number Diff line change @@ -66,6 +66,10 @@ let package = Package(
6666 name: " FirebaseAuthSwiftUI " ,
6767 targets: [ " FirebaseAuthSwiftUI " ]
6868 ) ,
69+ . library(
70+ name: " FirebaseEmailAuthSwiftUI " ,
71+ targets: [ " FirebaseEmailAuthSwiftUI " ]
72+ ) ,
6973 ] ,
7074 dependencies: [
7175 . package (
@@ -257,5 +261,17 @@ let package = Package(
257261 dependencies: [ " FirebaseAuthSwiftUI " ] ,
258262 path: " FirebaseSwiftUI/FirebaseAuthSwiftUI/Tests/ "
259263 ) ,
264+ . target(
265+ name: " FirebaseEmailAuthSwiftUI " ,
266+ dependencies: [
267+ " FirebaseAuthSwiftUI "
268+ ] ,
269+ path: " FirebaseSwiftUI/FirebaseEmailAuthSwiftUI/Sources "
270+ ) ,
271+ . testTarget(
272+ name: " FirebaseEmailAuthSwiftUITests " ,
273+ dependencies: [ " FirebaseEmailAuthSwiftUI " ] ,
274+ path: " FirebaseSwiftUI/FirebaseEmailAuthSwiftUI/Tests/ "
275+ ) ,
260276 ]
261277)
You can’t perform that action at this time.
0 commit comments