Skip to content

Commit 48adfc8

Browse files
committed
First build
1 parent 53b4cdd commit 48adfc8

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

Package.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ let package = Package(
1414
dependencies: [
1515
.package(url: "https://github.com/Flight-School/AnyCodable.git", from: "0.1.0"),
1616
.package(url: "https://github.com/mattpolzin/Sampleable.git", from: "1.0.0"),
17+
.package(url: "https://github.com/mattpolzin/JSONAPI-Arbitrary.git", from: "1.0.0"),
1718
.package(url: "https://github.com/mattpolzin/JSONAPI.git", from: "0.18.0"),
1819
],
1920
targets: [
@@ -24,6 +25,6 @@ let package = Package(
2425
dependencies: ["JSONAPI", "AnyCodable", "JSONAPIArbitrary", "Sampleable"]),
2526
.testTarget(
2627
name: "JSONAPIOpenAPITests",
27-
dependencies: ["JSONAPI", "JSONAPIOpenAPI"])
28+
dependencies: ["JSONAPI", "JSONAPITesting", "JSONAPIOpenAPI"])
2829
]
2930
)

Tests/LinuxMain.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ import XCTest
33
import JSONAPIOpenAPITests
44

55
var tests = [XCTestCaseEntry]()
6-
tests += JSONAPIOpenAPITests.allTests()
7-
XCTMain(tests)
6+
tests += JSONAPIOpenAPITests.__allTests()
7+
8+
XCTMain(tests)

0 commit comments

Comments
 (0)