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(
66
66
name: " FirebaseAuthSwiftUI " ,
67
67
targets: [ " FirebaseAuthSwiftUI " ]
68
68
) ,
69
+ . library(
70
+ name: " FirebaseEmailAuthSwiftUI " ,
71
+ targets: [ " FirebaseEmailAuthSwiftUI " ]
72
+ ) ,
69
73
] ,
70
74
dependencies: [
71
75
. package (
@@ -257,5 +261,17 @@ let package = Package(
257
261
dependencies: [ " FirebaseAuthSwiftUI " ] ,
258
262
path: " FirebaseSwiftUI/FirebaseAuthSwiftUI/Tests/ "
259
263
) ,
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
+ ) ,
260
276
]
261
277
)
You can’t perform that action at this time.
0 commit comments