├── .dockerignore ├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── question.md ├── kaleidoscope-diff.png ├── snapshot-test-1.png ├── snapshot-test.png └── workflows │ ├── ci.yml │ ├── format.yml │ └── release.yml ├── .gitignore ├── .spi.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── Package@swift-5.9.swift ├── README.md ├── Sources ├── InlineSnapshotTesting │ ├── AssertInlineSnapshot.swift │ ├── Documentation.docc │ │ └── InlineSnapshotTesting.md │ └── Exports.swift ├── SnapshotTesting │ ├── AssertSnapshot.swift │ ├── Async.swift │ ├── Common │ │ ├── Internal.swift │ │ ├── PlistEncoder.swift │ │ ├── String+SpecialCharacters.swift │ │ ├── View.swift │ │ └── XCTAttachment.swift │ ├── Diff.swift │ ├── Diffing.swift │ ├── Documentation.docc │ │ ├── Articles │ │ │ ├── CustomStrategies.md │ │ │ ├── IntegratingWithTestFrameworks.md │ │ │ └── MigrationGuides │ │ │ │ ├── MigratingTo1.17.md │ │ │ │ └── MigrationGuides.md │ │ ├── Extensions │ │ │ ├── AssertSnapshot.md │ │ │ ├── Deprecations │ │ │ │ ├── SnapshotTestingDeprecations.md │ │ │ │ ├── diffTool-property-deprecation.md │ │ │ │ └── isRecording-property-deprecation.md │ │ │ ├── SnapshotsTrait.md │ │ │ ├── Snapshotting.md │ │ │ └── WithSnapshotTesting.md │ │ └── SnapshotTesting.md │ ├── Extensions │ │ └── Wait.swift │ ├── Internal │ │ ├── Deprecations.swift │ │ └── RecordIssue.swift │ ├── SnapshotTestingConfiguration.swift │ ├── SnapshotsTestTrait.swift │ ├── Snapshotting.swift │ └── Snapshotting │ │ ├── Any.swift │ │ ├── CALayer.swift │ │ ├── CGPath.swift │ │ ├── CaseIterable.swift │ │ ├── Data.swift │ │ ├── Encodable.swift │ │ ├── NSBezierPath.swift │ │ ├── NSImage.swift │ │ ├── NSView.swift │ │ ├── NSViewController.swift │ │ ├── SceneKit.swift │ │ ├── SpriteKit.swift │ │ ├── String.swift │ │ ├── SwiftUIView.swift │ │ ├── UIBezierPath.swift │ │ ├── UIImage.swift │ │ ├── UIView.swift │ │ ├── UIViewController.swift │ │ └── URLRequest.swift └── SnapshotTestingCustomDump │ └── CustomDump.swift └── Tests ├── InlineSnapshotTestingTests ├── AssertInlineSnapshotSwiftTests.swift ├── CustomDumpTests.swift ├── InlineSnapshotTesting.xctestplan ├── InlineSnapshotTestingTests.swift └── Internal │ ├── BaseSuite.swift │ └── BaseTestCase.swift └── SnapshotTestingTests ├── AssertSnapshotSwiftTests.swift ├── DeprecationTests.swift ├── Internal ├── BaseSuite.swift ├── BaseTestCase.swift └── TestHelpers.swift ├── RecordTests.swift ├── SnapshotTestingTests.swift ├── SnapshotsTraitTests.swift ├── SwiftTestingTests.swift ├── WaitTests.swift ├── WithSnapshotTestingTests.swift ├── __Fixtures__ ├── earth.png ├── pointfree.html └── testImagePrecision.reference.png └── __Snapshots__ ├── AssertSnapshotSwiftTests ├── dump.1.txt └── dump.2.txt ├── SnapshotTestingTests ├── testAny.1.txt ├── testAnyAsJson.1.json ├── testAnySnapshotStringConvertible.character.txt ├── testAnySnapshotStringConvertible.data.txt ├── testAnySnapshotStringConvertible.date.txt ├── testAnySnapshotStringConvertible.nsobject.txt ├── testAnySnapshotStringConvertible.string.txt ├── testAnySnapshotStringConvertible.substring.txt ├── testAnySnapshotStringConvertible.url.txt ├── testAssertMultipleSnapshot.1.png ├── testAssertMultipleSnapshot.2.png ├── testAssertMultipleSnapshot.iPad-image.png ├── testAssertMultipleSnapshot.iPhoneSE-image.png ├── testAutolayout.1.png ├── testCALayer.1.png ├── testCALayerWithGradient.1.png ├── testCGPath.iOS.png ├── testCGPath.iOS.txt ├── testCGPath.macOS.png ├── testCGPath.macOS.txt ├── testCGPath.tvOS.png ├── testCGPath.tvOS.txt ├── testCaseIterable.1.csv ├── testCollectionViewsWithMultipleScreenSizes.ipad.png ├── testCollectionViewsWithMultipleScreenSizes.iphone8.png ├── testCollectionViewsWithMultipleScreenSizes.iphoneMax.png ├── testCollectionViewsWithMultipleScreenSizes.iphoneSe.png ├── testData.1 ├── testDeterministicDictionaryAndSetSnapshots.1.txt ├── testEmbeddedWebView.ios.png ├── testEncodable.1.json ├── testEncodable.2.plist ├── testImagePrecision.exact.png ├── testImagePrecision.perceptual.png ├── testMixedViews.ios.png ├── testMixedViews.macos.png ├── testMultipleSnapshots.1.txt ├── testMultipleSnapshots.2.txt ├── testNSBezierPath.macOS.png ├── testNSBezierPath.macOS.txt ├── testNSView.1.png ├── testNSView.2.txt ├── testNSViewWithLayer.1.png ├── testNSViewWithLayer.2.txt ├── testNamedAssertion.named.txt ├── testPrecision.ios.png ├── testPrecision.macos.png ├── testPrecision.tvos.png ├── testRecursion.1.txt ├── testRecursion.2.txt ├── testSCNView.ios.png ├── testSCNView.macos.png ├── testSCNView.tvos.png ├── testSKView.ios.png ├── testSKView.macos.png ├── testSKView.tvos.png ├── testSwiftUIView_iOS.1.png ├── testSwiftUIView_iOS.device.png ├── testSwiftUIView_iOS.fixed.png ├── testSwiftUIView_iOS.size-that-fits.png ├── testSwiftUIView_tvOS.1.png ├── testSwiftUIView_tvOS.device.png ├── testSwiftUIView_tvOS.fixed.png ├── testSwiftUIView_tvOS.size-that-fits.png ├── testTableViewController.1.png ├── testTraits.ipad-10-2-33-split-portrait.png ├── testTraits.ipad-10-2-50-split-landscape.png ├── testTraits.ipad-10-2-66-split-landscape.png ├── testTraits.ipad-10-2-66-split-portrait.png ├── testTraits.ipad-10-2-alternative.png ├── testTraits.ipad-10-2-split-landscape.png ├── testTraits.ipad-10-2.png ├── testTraits.ipad-10-2.txt ├── testTraits.ipad-9-7-33-split-landscape.png ├── testTraits.ipad-9-7-33-split-portrait.png ├── testTraits.ipad-9-7-50-split-landscape.png ├── testTraits.ipad-9-7-66-split-landscape.png ├── testTraits.ipad-9-7-66-split-portrait.png ├── testTraits.ipad-9-7-alternative.png ├── testTraits.ipad-9-7.png ├── testTraits.ipad-9-7.txt ├── testTraits.ipad-mini-33-split-landscape.png ├── testTraits.ipad-mini-33-split-portrait.png ├── testTraits.ipad-mini-50-split-landscape.png ├── testTraits.ipad-mini-66-split-landscape.png ├── testTraits.ipad-mini-66-split-portrait.png ├── testTraits.ipad-mini-alternative.png ├── testTraits.ipad-mini.png ├── testTraits.ipad-mini.txt ├── testTraits.ipad-pro-10-5-alternative.png ├── testTraits.ipad-pro-10-5.png ├── testTraits.ipad-pro-10-5.txt ├── testTraits.ipad-pro-10inch-33-split-landscape.png ├── testTraits.ipad-pro-10inch-33-split-portrait.png ├── testTraits.ipad-pro-10inch-50-split-landscape.png ├── testTraits.ipad-pro-10inch-66-split-landscape.png ├── testTraits.ipad-pro-10inch-66-split-portrait.png ├── testTraits.ipad-pro-11-alternative.png ├── testTraits.ipad-pro-11.png ├── testTraits.ipad-pro-11.txt ├── testTraits.ipad-pro-11inch-33-split-landscape.png ├── testTraits.ipad-pro-11inch-33-split-portrait.png ├── testTraits.ipad-pro-11inch-50-split-landscape.png ├── testTraits.ipad-pro-11inch-66-split-landscape.png ├── testTraits.ipad-pro-11inch-66-split-portrait.png ├── testTraits.ipad-pro-12-9-alternative.png ├── testTraits.ipad-pro-12-9.png ├── testTraits.ipad-pro-12-9.txt ├── testTraits.ipad-pro-12inch-33-split-landscape.png ├── testTraits.ipad-pro-12inch-33-split-portrait.png ├── testTraits.ipad-pro-12inch-50-split-landscape.png ├── testTraits.ipad-pro-12inch-66-split-landscape.png ├── testTraits.ipad-pro-12inch-66-split-portrait.png ├── testTraits.iphone-8-alternative.png ├── testTraits.iphone-8-plus-alternative.png ├── testTraits.iphone-8-plus.png ├── testTraits.iphone-8-plus.txt ├── testTraits.iphone-8.png ├── testTraits.iphone-8.txt ├── testTraits.iphone-se-accessibility-extra-extra-extra-large.png ├── testTraits.iphone-se-accessibility-extra-extra-large.png ├── testTraits.iphone-se-accessibility-extra-large.png ├── testTraits.iphone-se-accessibility-large.png ├── testTraits.iphone-se-accessibility-medium.png ├── testTraits.iphone-se-alternative.png ├── testTraits.iphone-se-extra-extra-extra-large.png ├── testTraits.iphone-se-extra-extra-large.png ├── testTraits.iphone-se-extra-large.png ├── testTraits.iphone-se-extra-small.png ├── testTraits.iphone-se-large.png ├── testTraits.iphone-se-medium.png ├── testTraits.iphone-se-small.png ├── testTraits.iphone-se.png ├── testTraits.iphone-se.txt ├── testTraits.iphone-x-alternative.png ├── testTraits.iphone-x.png ├── testTraits.iphone-x.txt ├── testTraits.iphone-xr-alternative.png ├── testTraits.iphone-xr.png ├── testTraits.iphone-xr.txt ├── testTraits.iphone-xs-max-alternative.png ├── testTraits.iphone-xs-max.png ├── testTraits.iphone-xs-max.txt ├── testTraits.tv.png ├── testTraits.tv4k.png ├── testTraitsEmbeddedInTabNavigation.ipad-10-2-alternative.png ├── testTraitsEmbeddedInTabNavigation.ipad-10-2.png ├── testTraitsEmbeddedInTabNavigation.ipad-9-7-alternative.png ├── testTraitsEmbeddedInTabNavigation.ipad-9-7.png ├── testTraitsEmbeddedInTabNavigation.ipad-mini-alternative.png ├── testTraitsEmbeddedInTabNavigation.ipad-mini.png ├── testTraitsEmbeddedInTabNavigation.ipad-pro-10-5-alternative.png ├── testTraitsEmbeddedInTabNavigation.ipad-pro-10-5.png ├── testTraitsEmbeddedInTabNavigation.ipad-pro-11-alternative.png ├── testTraitsEmbeddedInTabNavigation.ipad-pro-11.png ├── testTraitsEmbeddedInTabNavigation.ipad-pro-12-9-alternative.png ├── testTraitsEmbeddedInTabNavigation.ipad-pro-12-9.png ├── testTraitsEmbeddedInTabNavigation.iphone-8-alternative.png ├── testTraitsEmbeddedInTabNavigation.iphone-8-plus-alternative.png ├── testTraitsEmbeddedInTabNavigation.iphone-8-plus.png ├── testTraitsEmbeddedInTabNavigation.iphone-8.png ├── testTraitsEmbeddedInTabNavigation.iphone-se-alternative.png ├── testTraitsEmbeddedInTabNavigation.iphone-se.png ├── testTraitsEmbeddedInTabNavigation.iphone-x-alternative.png ├── testTraitsEmbeddedInTabNavigation.iphone-x.png ├── testTraitsEmbeddedInTabNavigation.iphone-xr-alternative.png ├── testTraitsEmbeddedInTabNavigation.iphone-xr.png ├── testTraitsEmbeddedInTabNavigation.iphone-xs-max-alternative.png ├── testTraitsEmbeddedInTabNavigation.iphone-xs-max.png ├── testTraitsWithView.label-accessibility-extra-extra-extra-large.png ├── testTraitsWithView.label-accessibility-extra-extra-large.png ├── testTraitsWithView.label-accessibility-extra-large.png ├── testTraitsWithView.label-accessibility-large.png ├── testTraitsWithView.label-accessibility-medium.png ├── testTraitsWithView.label-extra-extra-extra-large.png ├── testTraitsWithView.label-extra-extra-large.png ├── testTraitsWithView.label-extra-large.png ├── testTraitsWithView.label-extra-small.png ├── testTraitsWithView.label-large.png ├── testTraitsWithView.label-medium.png ├── testTraitsWithView.label-small.png ├── testTraitsWithViewController.label-accessibility-extra-extra-extra-large.txt ├── testTraitsWithViewController.label-accessibility-extra-extra-large.txt ├── testTraitsWithViewController.label-accessibility-extra-large.txt ├── testTraitsWithViewController.label-accessibility-large.txt ├── testTraitsWithViewController.label-accessibility-medium.txt ├── testTraitsWithViewController.label-extra-extra-extra-large.txt ├── testTraitsWithViewController.label-extra-extra-large.txt ├── testTraitsWithViewController.label-extra-large.txt ├── testTraitsWithViewController.label-extra-small.txt ├── testTraitsWithViewController.label-large.txt ├── testTraitsWithViewController.label-medium.txt ├── testTraitsWithViewController.label-small.txt ├── testUIBezierPath.iOS.png ├── testUIBezierPath.iOS.txt ├── testUIBezierPath.tvOS.png ├── testUIBezierPath.tvOS.txt ├── testUIView.1.png ├── testUIView.2.txt ├── testUIViewControllerLifeCycle.1.png ├── testUIViewControllerLifeCycle.2.png ├── testURLRequest.get-curl.txt ├── testURLRequest.get-with-query-curl.txt ├── testURLRequest.get-with-query.txt ├── testURLRequest.get.txt ├── testURLRequest.head-curl.txt ├── testURLRequest.head.txt ├── testURLRequest.post-curl.txt ├── testURLRequest.post-json.txt ├── testURLRequest.post-with-json-curl.txt ├── testURLRequest.post-with-json.txt ├── testURLRequest.post.txt ├── testViewAgainstEmptyImage.notEmptyImage.png ├── testViewControllerHierarchy.1.txt ├── testViewWithZeroHeightOrWidth.noHeight.png ├── testViewWithZeroHeightOrWidth.noWidth-noHeight.png ├── testViewWithZeroHeightOrWidth.noWidth.png ├── testWebView.ios.png ├── testWebView.macos.png ├── testWebViewWithCancellingNavigationDelegate.ios.png ├── testWebViewWithCancellingNavigationDelegate.macos.png ├── testWebViewWithManipulatingNavigationDelegate.ios.png └── testWebViewWithManipulatingNavigationDelegate.macos.png ├── SwiftTestingTests ├── testSnapshot.1.txt ├── testSnapshot.snap.txt └── testSnapshotFailure.1.txt └── WaitTests └── testWait.1.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/kaleidoscope-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.github/kaleidoscope-diff.png -------------------------------------------------------------------------------- /.github/snapshot-test-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.github/snapshot-test-1.png -------------------------------------------------------------------------------- /.github/snapshot-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.github/snapshot-test.png -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/.spi.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-5.9.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Package@swift-5.9.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/README.md -------------------------------------------------------------------------------- /Sources/InlineSnapshotTesting/AssertInlineSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/InlineSnapshotTesting/AssertInlineSnapshot.swift -------------------------------------------------------------------------------- /Sources/InlineSnapshotTesting/Documentation.docc/InlineSnapshotTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/InlineSnapshotTesting/Documentation.docc/InlineSnapshotTesting.md -------------------------------------------------------------------------------- /Sources/InlineSnapshotTesting/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/InlineSnapshotTesting/Exports.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/AssertSnapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/AssertSnapshot.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Async.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Common/Internal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Common/Internal.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Common/PlistEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Common/PlistEncoder.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Common/String+SpecialCharacters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Common/String+SpecialCharacters.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Common/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Common/View.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Common/XCTAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Common/XCTAttachment.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Diff.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Diffing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Diffing.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Documentation.docc/Articles/CustomStrategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Documentation.docc/Articles/CustomStrategies.md -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Documentation.docc/Articles/IntegratingWithTestFrameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Documentation.docc/Articles/IntegratingWithTestFrameworks.md -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Documentation.docc/Articles/MigrationGuides/MigratingTo1.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Documentation.docc/Articles/MigrationGuides/MigratingTo1.17.md -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Documentation.docc/Articles/MigrationGuides/MigrationGuides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Documentation.docc/Articles/MigrationGuides/MigrationGuides.md -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Documentation.docc/Extensions/AssertSnapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Documentation.docc/Extensions/AssertSnapshot.md -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Documentation.docc/Extensions/Deprecations/SnapshotTestingDeprecations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Documentation.docc/Extensions/Deprecations/SnapshotTestingDeprecations.md -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Documentation.docc/Extensions/Deprecations/diffTool-property-deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Documentation.docc/Extensions/Deprecations/diffTool-property-deprecation.md -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Documentation.docc/Extensions/Deprecations/isRecording-property-deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Documentation.docc/Extensions/Deprecations/isRecording-property-deprecation.md -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Documentation.docc/Extensions/SnapshotsTrait.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Documentation.docc/Extensions/SnapshotsTrait.md -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Documentation.docc/Extensions/Snapshotting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Documentation.docc/Extensions/Snapshotting.md -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Documentation.docc/Extensions/WithSnapshotTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Documentation.docc/Extensions/WithSnapshotTesting.md -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Documentation.docc/SnapshotTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Documentation.docc/SnapshotTesting.md -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Extensions/Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Extensions/Wait.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Internal/Deprecations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Internal/Deprecations.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Internal/RecordIssue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Internal/RecordIssue.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/SnapshotTestingConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/SnapshotTestingConfiguration.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/SnapshotsTestTrait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/SnapshotsTestTrait.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/Any.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/Any.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/CALayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/CALayer.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/CGPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/CGPath.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/CaseIterable.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/Data.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/Encodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/Encodable.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/NSBezierPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/NSBezierPath.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/NSImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/NSImage.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/NSView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/NSView.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/NSViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/NSViewController.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/SceneKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/SceneKit.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/SpriteKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/SpriteKit.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/String.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/SwiftUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/SwiftUIView.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/UIBezierPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/UIBezierPath.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/UIImage.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/UIView.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/UIViewController.swift -------------------------------------------------------------------------------- /Sources/SnapshotTesting/Snapshotting/URLRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTesting/Snapshotting/URLRequest.swift -------------------------------------------------------------------------------- /Sources/SnapshotTestingCustomDump/CustomDump.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Sources/SnapshotTestingCustomDump/CustomDump.swift -------------------------------------------------------------------------------- /Tests/InlineSnapshotTestingTests/AssertInlineSnapshotSwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/InlineSnapshotTestingTests/AssertInlineSnapshotSwiftTests.swift -------------------------------------------------------------------------------- /Tests/InlineSnapshotTestingTests/CustomDumpTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/InlineSnapshotTestingTests/CustomDumpTests.swift -------------------------------------------------------------------------------- /Tests/InlineSnapshotTestingTests/InlineSnapshotTesting.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/InlineSnapshotTestingTests/InlineSnapshotTesting.xctestplan -------------------------------------------------------------------------------- /Tests/InlineSnapshotTestingTests/InlineSnapshotTestingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/InlineSnapshotTestingTests/InlineSnapshotTestingTests.swift -------------------------------------------------------------------------------- /Tests/InlineSnapshotTestingTests/Internal/BaseSuite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/InlineSnapshotTestingTests/Internal/BaseSuite.swift -------------------------------------------------------------------------------- /Tests/InlineSnapshotTestingTests/Internal/BaseTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/InlineSnapshotTestingTests/Internal/BaseTestCase.swift -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/AssertSnapshotSwiftTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/AssertSnapshotSwiftTests.swift -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/DeprecationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/DeprecationTests.swift -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/Internal/BaseSuite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/Internal/BaseSuite.swift -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/Internal/BaseTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/Internal/BaseTestCase.swift -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/Internal/TestHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/Internal/TestHelpers.swift -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/RecordTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/RecordTests.swift -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/SnapshotTestingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/SnapshotTestingTests.swift -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/SnapshotsTraitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/SnapshotsTraitTests.swift -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/SwiftTestingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/SwiftTestingTests.swift -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/WaitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/WaitTests.swift -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/WithSnapshotTestingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/WithSnapshotTestingTests.swift -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Fixtures__/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Fixtures__/earth.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Fixtures__/pointfree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Fixtures__/pointfree.html -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Fixtures__/testImagePrecision.reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Fixtures__/testImagePrecision.reference.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/AssertSnapshotSwiftTests/dump.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/AssertSnapshotSwiftTests/dump.1.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/AssertSnapshotSwiftTests/dump.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/AssertSnapshotSwiftTests/dump.2.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAny.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAny.1.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAnyAsJson.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAnyAsJson.1.json -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAnySnapshotStringConvertible.character.txt: -------------------------------------------------------------------------------- 1 | - "a" 2 | -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAnySnapshotStringConvertible.data.txt: -------------------------------------------------------------------------------- 1 | - 13 bytes 2 | -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAnySnapshotStringConvertible.date.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAnySnapshotStringConvertible.date.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAnySnapshotStringConvertible.nsobject.txt: -------------------------------------------------------------------------------- 1 | - 2 | -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAnySnapshotStringConvertible.string.txt: -------------------------------------------------------------------------------- 1 | - "Hello, world!" 2 | -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAnySnapshotStringConvertible.substring.txt: -------------------------------------------------------------------------------- 1 | - "Hello" 2 | -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAnySnapshotStringConvertible.url.txt: -------------------------------------------------------------------------------- 1 | - https://www.pointfree.co 2 | -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAssertMultipleSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAssertMultipleSnapshot.1.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAssertMultipleSnapshot.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAssertMultipleSnapshot.2.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAssertMultipleSnapshot.iPad-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAssertMultipleSnapshot.iPad-image.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAssertMultipleSnapshot.iPhoneSE-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAssertMultipleSnapshot.iPhoneSE-image.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAutolayout.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testAutolayout.1.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCALayer.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCALayer.1.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCALayerWithGradient.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCALayerWithGradient.1.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCGPath.iOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCGPath.iOS.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCGPath.iOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCGPath.iOS.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCGPath.macOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCGPath.macOS.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCGPath.macOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCGPath.macOS.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCGPath.tvOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCGPath.tvOS.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCGPath.tvOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCGPath.tvOS.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCaseIterable.1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCaseIterable.1.csv -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCollectionViewsWithMultipleScreenSizes.ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCollectionViewsWithMultipleScreenSizes.ipad.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCollectionViewsWithMultipleScreenSizes.iphone8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCollectionViewsWithMultipleScreenSizes.iphone8.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCollectionViewsWithMultipleScreenSizes.iphoneMax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCollectionViewsWithMultipleScreenSizes.iphoneMax.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCollectionViewsWithMultipleScreenSizes.iphoneSe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testCollectionViewsWithMultipleScreenSizes.iphoneSe.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testData.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testData.1 -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testDeterministicDictionaryAndSetSnapshots.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testDeterministicDictionaryAndSetSnapshots.1.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testEmbeddedWebView.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testEmbeddedWebView.ios.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testEncodable.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testEncodable.1.json -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testEncodable.2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testEncodable.2.plist -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testImagePrecision.exact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testImagePrecision.exact.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testImagePrecision.perceptual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testImagePrecision.perceptual.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testMixedViews.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testMixedViews.ios.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testMixedViews.macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testMixedViews.macos.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testMultipleSnapshots.1.txt: -------------------------------------------------------------------------------- 1 | ▿ 1 element 2 | - 1 3 | -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testMultipleSnapshots.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testMultipleSnapshots.2.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNSBezierPath.macOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNSBezierPath.macOS.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNSBezierPath.macOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNSBezierPath.macOS.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNSView.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNSView.1.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNSView.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNSView.2.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNSViewWithLayer.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNSViewWithLayer.1.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNSViewWithLayer.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNSViewWithLayer.2.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNamedAssertion.named.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testNamedAssertion.named.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testPrecision.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testPrecision.ios.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testPrecision.macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testPrecision.macos.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testPrecision.tvos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testPrecision.tvos.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testRecursion.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testRecursion.1.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testRecursion.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testRecursion.2.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSCNView.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSCNView.ios.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSCNView.macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSCNView.macos.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSCNView.tvos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSCNView.tvos.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSKView.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSKView.ios.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSKView.macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSKView.macos.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSKView.tvos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSKView.tvos.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_iOS.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_iOS.1.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_iOS.device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_iOS.device.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_iOS.fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_iOS.fixed.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_iOS.size-that-fits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_iOS.size-that-fits.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_tvOS.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_tvOS.1.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_tvOS.device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_tvOS.device.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_tvOS.fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_tvOS.fixed.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_tvOS.size-that-fits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testSwiftUIView_tvOS.size-that-fits.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTableViewController.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTableViewController.1.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2-33-split-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2-33-split-portrait.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2-50-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2-50-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2-66-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2-66-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2-66-split-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2-66-split-portrait.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-10-2.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7-33-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7-33-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7-33-split-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7-33-split-portrait.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7-50-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7-50-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7-66-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7-66-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7-66-split-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7-66-split-portrait.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-9-7.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini-33-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini-33-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini-33-split-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini-33-split-portrait.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini-50-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini-50-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini-66-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini-66-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini-66-split-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini-66-split-portrait.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-mini.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10-5-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10-5-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10-5.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10-5.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10inch-33-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10inch-33-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10inch-33-split-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10inch-33-split-portrait.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10inch-50-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10inch-50-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10inch-66-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10inch-66-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10inch-66-split-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-10inch-66-split-portrait.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11inch-33-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11inch-33-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11inch-33-split-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11inch-33-split-portrait.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11inch-50-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11inch-50-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11inch-66-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11inch-66-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11inch-66-split-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-11inch-66-split-portrait.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12-9-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12-9-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12-9.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12-9.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12inch-33-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12inch-33-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12inch-33-split-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12inch-33-split-portrait.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12inch-50-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12inch-50-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12inch-66-split-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12inch-66-split-landscape.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12inch-66-split-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.ipad-pro-12inch-66-split-portrait.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-8-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-8-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-8-plus-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-8-plus-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-8-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-8-plus.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-8-plus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-8-plus.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-8.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-8.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-accessibility-extra-extra-extra-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-accessibility-extra-extra-extra-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-accessibility-extra-extra-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-accessibility-extra-extra-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-accessibility-extra-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-accessibility-extra-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-accessibility-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-accessibility-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-accessibility-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-accessibility-medium.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-extra-extra-extra-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-extra-extra-extra-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-extra-extra-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-extra-extra-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-extra-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-extra-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-extra-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-extra-small.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-medium.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se-small.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-se.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-x-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-x-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-x.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-x.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-xr-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-xr-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-xr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-xr.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-xr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-xr.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-xs-max-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-xs-max-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-xs-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-xs-max.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-xs-max.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.iphone-xs-max.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.tv.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.tv4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraits.tv4k.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-10-2-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-10-2-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-10-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-10-2.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-9-7-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-9-7-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-9-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-9-7.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-mini-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-mini-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-mini.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-pro-10-5-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-pro-10-5-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-pro-10-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-pro-10-5.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-pro-11-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-pro-11-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-pro-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-pro-11.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-pro-12-9-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-pro-12-9-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-pro-12-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.ipad-pro-12-9.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-8-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-8-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-8-plus-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-8-plus-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-8-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-8-plus.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-8.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-se-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-se-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-se.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-x-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-x-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-x.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-xr-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-xr-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-xr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-xr.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-xs-max-alternative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-xs-max-alternative.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-xs-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsEmbeddedInTabNavigation.iphone-xs-max.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-accessibility-extra-extra-extra-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-accessibility-extra-extra-extra-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-accessibility-extra-extra-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-accessibility-extra-extra-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-accessibility-extra-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-accessibility-extra-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-accessibility-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-accessibility-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-accessibility-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-accessibility-medium.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-extra-extra-extra-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-extra-extra-extra-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-extra-extra-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-extra-extra-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-extra-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-extra-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-extra-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-extra-small.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-large.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-medium.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithView.label-small.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-accessibility-extra-extra-extra-large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-accessibility-extra-extra-extra-large.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-accessibility-extra-extra-large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-accessibility-extra-extra-large.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-accessibility-extra-large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-accessibility-extra-large.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-accessibility-large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-accessibility-large.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-accessibility-medium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-accessibility-medium.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-extra-extra-extra-large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-extra-extra-extra-large.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-extra-extra-large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-extra-extra-large.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-extra-large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-extra-large.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-extra-small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-extra-small.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-large.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-medium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-medium.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testTraitsWithViewController.label-small.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIBezierPath.iOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIBezierPath.iOS.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIBezierPath.iOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIBezierPath.iOS.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIBezierPath.tvOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIBezierPath.tvOS.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIBezierPath.tvOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIBezierPath.tvOS.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIView.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIView.1.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIView.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIView.2.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIViewControllerLifeCycle.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIViewControllerLifeCycle.1.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIViewControllerLifeCycle.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testUIViewControllerLifeCycle.2.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.get-curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.get-curl.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.get-with-query-curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.get-with-query-curl.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.get-with-query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.get-with-query.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.get.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.get.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.head-curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.head-curl.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.head.txt: -------------------------------------------------------------------------------- 1 | HEAD https://www.pointfree.co/ 2 | Cookie: pf_session={} -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.post-curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.post-curl.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.post-json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.post-json.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.post-with-json-curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.post-with-json-curl.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.post-with-json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.post-with-json.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.post.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testURLRequest.post.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testViewAgainstEmptyImage.notEmptyImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testViewAgainstEmptyImage.notEmptyImage.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testViewControllerHierarchy.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testViewControllerHierarchy.1.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testViewWithZeroHeightOrWidth.noHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testViewWithZeroHeightOrWidth.noHeight.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testViewWithZeroHeightOrWidth.noWidth-noHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testViewWithZeroHeightOrWidth.noWidth-noHeight.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testViewWithZeroHeightOrWidth.noWidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testViewWithZeroHeightOrWidth.noWidth.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testWebView.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testWebView.ios.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testWebView.macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testWebView.macos.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testWebViewWithCancellingNavigationDelegate.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testWebViewWithCancellingNavigationDelegate.ios.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testWebViewWithCancellingNavigationDelegate.macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testWebViewWithCancellingNavigationDelegate.macos.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testWebViewWithManipulatingNavigationDelegate.ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testWebViewWithManipulatingNavigationDelegate.ios.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testWebViewWithManipulatingNavigationDelegate.macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SnapshotTestingTests/testWebViewWithManipulatingNavigationDelegate.macos.png -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SwiftTestingTests/testSnapshot.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SwiftTestingTests/testSnapshot.1.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SwiftTestingTests/testSnapshot.snap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SwiftTestingTests/testSnapshot.snap.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/SwiftTestingTests/testSnapshotFailure.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-snapshot-testing/HEAD/Tests/SnapshotTestingTests/__Snapshots__/SwiftTestingTests/testSnapshotFailure.1.txt -------------------------------------------------------------------------------- /Tests/SnapshotTestingTests/__Snapshots__/WaitTests/testWait.1.txt: -------------------------------------------------------------------------------- 1 | Goodbye --------------------------------------------------------------------------------