Skip to content

Commit 5225820

Browse files
committed
fix: add HTMLElementTypesFoundation dependency to HTMLElementTypes tests
The HTMLElementTypes Tests target was importing HTMLElementTypesFoundation but the dependency was not declared in Package.swift, causing compile errors. Fixes compile error: no such module 'HTMLElementTypesFoundation'
1 parent 653024c commit 5225820

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Package.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ let package = Package(
7373
.testTarget(
7474
name: .htmlElementTypes.tests,
7575
dependencies: [
76-
.htmlElementTypes
76+
.htmlElementTypes,
77+
.htmlElementTypesFoundation
7778
]
7879
),
7980
.target(

0 commit comments

Comments
 (0)