BarredEwe / Prefire

🔥 A library based on SwiftUI Preview, for easy generation: Playbook view, Snapshot and Accessibility tests
Apache License 2.0
253 stars 16 forks source link

Improved target search for tests #14

Closed BarredEwe closed 1 year ago

BarredEwe commented 1 year ago

Improved target search for tests:

Added separation of plug-ins connection to the documentation:

.target(
    plugins: [
        // For Playbook (Demo) view
        .plugin(name: "PrefirePlaybookPlugin", package: "Prefire")
    ]
),
.testTarget(
    plugins: [
        // For Snapshot Tests
        .plugin(name: "PrefireTestsPlugin", package: "Prefire")
    ]
)