├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE │ └── bug.md └── workflows │ ├── ci.yml │ ├── clean.yml │ └── pages.yml ├── .gitignore ├── .sbtopts ├── .scala-steward.conf ├── .scalafix.conf ├── .scalafmt.conf ├── LICENSE ├── README.md ├── docs ├── markdown │ ├── contributing │ │ ├── how-it-works.md │ │ ├── index.md │ │ └── supporting-a-test-framework.md │ ├── custom-types-support.md │ ├── faq.md │ ├── file-snapshots.md │ ├── inline-snapshots.md │ ├── intro.md │ ├── limitations.md │ ├── quick-start.md │ ├── sbt-setup.md │ └── supported-frameworks.md └── src │ └── main │ └── scala │ └── Snapshot4sBuildInfo.scala ├── modules ├── core │ └── src │ │ ├── main │ │ ├── scala-2.12 │ │ │ └── com │ │ │ │ └── siriusxm │ │ │ │ └── snapshot4s │ │ │ │ └── InlineReprCompat.scala │ │ ├── scala-2.13 │ │ │ └── com │ │ │ │ └── siriusxm │ │ │ │ └── snapshot4s │ │ │ │ └── InlineReprCompat.scala │ │ ├── scala-2 │ │ │ └── com │ │ │ │ └── siriusxm │ │ │ │ └── snapshot4s │ │ │ │ ├── AssertFileSnapshotMacro.scala │ │ │ │ ├── AssertInlineSnapshotMacro.scala │ │ │ │ └── ReprForAdt.scala │ │ ├── scala-3 │ │ │ └── com │ │ │ │ └── siriusxm │ │ │ │ └── snapshot4s │ │ │ │ ├── AssertFileSnapshotMacro.scala │ │ │ │ ├── AssertInlineSnapshotMacro.scala │ │ │ │ ├── InlineReprCompat.scala │ │ │ │ └── ReprForAdt.scala │ │ ├── scala │ │ │ └── com │ │ │ │ └── siriusxm │ │ │ │ └── snapshot4s │ │ │ │ ├── ErrorMessages.scala │ │ │ │ ├── FileSnapshot.scala │ │ │ │ ├── InlineRepr.scala │ │ │ │ ├── InlineSnapshot.scala │ │ │ │ ├── Locations.scala │ │ │ │ ├── PathApi.scala │ │ │ │ ├── Repr.scala │ │ │ │ ├── Result.scala │ │ │ │ ├── ResultLike.scala │ │ │ │ ├── SnapshotAssertions.scala │ │ │ │ ├── SnapshotConfig.scala │ │ │ │ ├── SnapshotConfigError.scala │ │ │ │ └── SnapshotEq.scala │ │ ├── scalajs │ │ │ └── com │ │ │ │ └── siriusxm │ │ │ │ └── snapshot4s │ │ │ │ ├── Path.scala │ │ │ │ └── RelPath.scala │ │ └── scalajvm │ │ │ └── com │ │ │ └── siriusxm │ │ │ └── snapshot4s │ │ │ ├── Path.scala │ │ │ └── RelPath.scala │ │ └── test │ │ ├── scala-2 │ │ └── com │ │ │ └── siriusxm │ │ │ └── snapshot4s │ │ │ └── ReprSpec.scala │ │ ├── scala-3 │ │ └── com │ │ │ └── siriusxm │ │ │ └── snapshot4s │ │ │ └── ReprSpec.scala │ │ ├── scala │ │ └── com │ │ │ └── siriusxm │ │ │ └── snapshot4s │ │ │ ├── AnnotationSpec.scala │ │ │ ├── LocationsSpec.scala │ │ │ └── ReprTestCases.scala │ │ └── scalajvm │ │ └── com │ │ └── siriusxm │ │ └── snapshot4s │ │ └── FileSnapshotSpec.scala ├── hashing │ └── src │ │ ├── main │ │ └── scala │ │ │ └── com │ │ │ └── siriusxm │ │ │ └── snapshot4s │ │ │ └── Hashing.scala │ │ └── test │ │ └── scala │ │ └── com │ │ └── siriusxm │ │ └── snapshot4s │ │ └── HashingSpec.scala ├── munit │ └── src │ │ ├── main │ │ └── scala │ │ │ └── com │ │ │ └── siriusxm │ │ │ └── snapshot4s │ │ │ └── munit │ │ │ ├── MunitResultLike.scala │ │ │ └── SnapshotAssertions.scala │ │ └── test │ │ └── scalajvm │ │ └── com │ │ └── siriusxm │ │ └── snapshot4s │ │ └── munit │ │ └── InlineSnapshotSpec.scala ├── plugin │ └── src │ │ ├── main │ │ └── scala │ │ │ └── com │ │ │ └── siriusxm │ │ │ └── snapshot │ │ │ └── Snapshot4sPlugin.scala │ │ └── sbt-test │ │ └── sbt-snapshot4s │ │ ├── multi-project-build │ │ ├── build.sbt │ │ ├── core │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ └── snapshot │ │ │ │ │ └── existing-file │ │ │ │ └── scala │ │ │ │ └── CoreTest.scala │ │ ├── framework │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ └── snapshot │ │ │ │ │ └── existing-file │ │ │ │ └── scala │ │ │ │ └── FrameworkTest.scala │ │ ├── project │ │ │ └── plugins.sbt │ │ ├── test │ │ └── utils │ │ │ └── src │ │ │ └── test │ │ │ ├── resources │ │ │ └── snapshot │ │ │ │ └── existing-file │ │ │ └── scala │ │ │ └── UtilsTest.scala │ │ ├── multiple-frameworks │ │ ├── build.sbt │ │ ├── project │ │ │ └── plugins.sbt │ │ ├── src │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ └── snapshot │ │ │ │ │ ├── existing-file │ │ │ │ │ └── nested-directory │ │ │ │ │ └── nested-file │ │ │ │ └── scala │ │ │ │ ├── MunitSimpleTest.scala │ │ │ │ ├── ScalaTestSimpleTest.scala │ │ │ │ └── WeaverSimpleTest.scala │ │ └── test │ │ ├── munit │ │ ├── build.sbt │ │ ├── project │ │ │ └── plugins.sbt │ │ ├── src │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ └── snapshot │ │ │ │ │ ├── existing-file │ │ │ │ │ └── nested-directory │ │ │ │ │ └── nested-file │ │ │ │ └── scala │ │ │ │ └── SimpleTest.scala │ │ └── test │ │ ├── projectmatrix │ │ ├── build.sbt │ │ ├── core │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ └── snapshot │ │ │ │ │ └── existing-file │ │ │ │ ├── scala-2 │ │ │ │ └── ScalaJVMAndScalaJS2Or3Test.scala │ │ │ │ ├── scala-3 │ │ │ │ └── ScalaJVMAndScalaJS2Or3Test.scala │ │ │ │ ├── scala │ │ │ │ └── ScalaJVMAndScalaJSTest.scala │ │ │ │ ├── scalajs-3 │ │ │ │ └── ScalaJVM3OrScalaJS3Test.scala │ │ │ │ ├── scalajs │ │ │ │ └── ScalaJSTest.scala │ │ │ │ └── scalajvm-3 │ │ │ │ └── ScalaJVM3OrScalaJS3Test.scala │ │ ├── project │ │ │ └── plugins.sbt │ │ └── test │ │ ├── promote-filter │ │ ├── build.sbt │ │ ├── project │ │ │ └── plugins.sbt │ │ ├── src │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ └── snapshot │ │ │ │ │ ├── existing-file │ │ │ │ │ └── nested-directory │ │ │ │ │ └── nested-file │ │ │ │ └── scala │ │ │ │ ├── FilterTest.scala │ │ │ │ └── OtherTest.scala │ │ └── test │ │ ├── reject-outdated-patches │ │ ├── build.sbt │ │ ├── project │ │ │ └── plugins.sbt │ │ ├── src │ │ │ └── test │ │ │ │ └── scala │ │ │ │ ├── SimpleTest.edited │ │ │ │ └── SimpleTest.scala │ │ └── test │ │ ├── sbt-typelevel │ │ ├── build.sbt │ │ ├── core │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ └── snapshot │ │ │ │ │ ├── existing-file │ │ │ │ │ └── nested-directory │ │ │ │ │ └── nested-file │ │ │ │ └── scala │ │ │ │ └── SimpleTest.scala │ │ ├── framework │ │ │ ├── js │ │ │ │ └── src │ │ │ │ │ └── test │ │ │ │ │ ├── resources │ │ │ │ │ └── snapshot │ │ │ │ │ │ ├── existing-file │ │ │ │ │ │ └── nested-directory │ │ │ │ │ │ └── nested-file │ │ │ │ │ └── scala │ │ │ │ │ └── SimpleTest.scala │ │ │ └── jvm │ │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ └── snapshot │ │ │ │ │ ├── existing-file │ │ │ │ │ └── nested-directory │ │ │ │ │ └── nested-file │ │ │ │ └── scala │ │ │ │ └── SimpleTest.scala │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── test │ │ └── utils │ │ │ └── shared │ │ │ └── src │ │ │ └── test │ │ │ ├── resources │ │ │ └── snapshot │ │ │ │ ├── existing-file │ │ │ │ └── nested-directory │ │ │ │ └── nested-file │ │ │ └── scala │ │ │ └── SimpleTest.scala │ │ ├── scala-js │ │ ├── build.sbt │ │ ├── project │ │ │ ├── build.properties │ │ │ └── plugins.sbt │ │ ├── src │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ └── snapshot │ │ │ │ │ ├── existing-file │ │ │ │ │ └── nested-directory │ │ │ │ │ └── nested-file │ │ │ │ └── scala │ │ │ │ └── SimpleTest.scala │ │ └── test │ │ ├── scalatest │ │ ├── build.sbt │ │ ├── project │ │ │ └── plugins.sbt │ │ ├── src │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ └── snapshot │ │ │ │ │ ├── existing-file │ │ │ │ │ └── nested-directory │ │ │ │ │ └── nested-file │ │ │ │ └── scala │ │ │ │ └── SimpleTest.scala │ │ └── test │ │ └── simple │ │ ├── build.sbt │ │ ├── project │ │ └── plugins.sbt │ │ ├── src │ │ └── test │ │ │ ├── resources │ │ │ └── snapshot │ │ │ │ ├── existing-file │ │ │ │ └── nested-directory │ │ │ │ └── nested-file │ │ │ └── scala │ │ │ └── SimpleTest.scala │ │ └── test ├── scalatest │ └── src │ │ ├── main │ │ └── scala │ │ │ └── com │ │ │ └── siriusxm │ │ │ └── snapshot4s │ │ │ └── scalatest │ │ │ ├── ScalaTestResultLike.scala │ │ │ └── SnapshotAssertions.scala │ │ └── test │ │ └── scalajvm │ │ └── com │ │ └── siriusxm │ │ └── snapshot4s │ │ └── scalatest │ │ └── InlineSnapshotSpec.scala └── weaver │ └── src │ ├── main │ └── scala │ │ └── com │ │ └── siriusxm │ │ └── snapshot4s │ │ └── weaver │ │ ├── Diff.scala │ │ ├── SnapshotExpectations.scala │ │ └── WeaverResultLike.scala │ └── test │ └── scalajvm │ └── com │ └── siriusxm │ └── snapshot4s │ └── weaver │ └── InlineSnapshotSpec.scala ├── project ├── Versions.scala ├── build.properties └── plugins.sbt └── website ├── .gitignore ├── babel.config.js ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── sidebars.ts ├── src ├── components │ └── HomepageFeatures │ │ ├── index.tsx │ │ └── styles.module.css ├── css │ └── custom.css └── pages │ ├── index.module.css │ └── index.tsx └── static ├── .nojekyll └── img ├── favicon.ico ├── logo-large.png ├── logo-medium.png └── logo-small.png /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/clean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/.github/workflows/clean.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/.gitignore -------------------------------------------------------------------------------- /.sbtopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/.sbtopts -------------------------------------------------------------------------------- /.scala-steward.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/.scala-steward.conf -------------------------------------------------------------------------------- /.scalafix.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/.scalafix.conf -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/README.md -------------------------------------------------------------------------------- /docs/markdown/contributing/how-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/markdown/contributing/how-it-works.md -------------------------------------------------------------------------------- /docs/markdown/contributing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/markdown/contributing/index.md -------------------------------------------------------------------------------- /docs/markdown/contributing/supporting-a-test-framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/markdown/contributing/supporting-a-test-framework.md -------------------------------------------------------------------------------- /docs/markdown/custom-types-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/markdown/custom-types-support.md -------------------------------------------------------------------------------- /docs/markdown/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/markdown/faq.md -------------------------------------------------------------------------------- /docs/markdown/file-snapshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/markdown/file-snapshots.md -------------------------------------------------------------------------------- /docs/markdown/inline-snapshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/markdown/inline-snapshots.md -------------------------------------------------------------------------------- /docs/markdown/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/markdown/intro.md -------------------------------------------------------------------------------- /docs/markdown/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/markdown/limitations.md -------------------------------------------------------------------------------- /docs/markdown/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/markdown/quick-start.md -------------------------------------------------------------------------------- /docs/markdown/sbt-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/markdown/sbt-setup.md -------------------------------------------------------------------------------- /docs/markdown/supported-frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/markdown/supported-frameworks.md -------------------------------------------------------------------------------- /docs/src/main/scala/Snapshot4sBuildInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/docs/src/main/scala/Snapshot4sBuildInfo.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala-2.12/com/siriusxm/snapshot4s/InlineReprCompat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala-2.12/com/siriusxm/snapshot4s/InlineReprCompat.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala-2.13/com/siriusxm/snapshot4s/InlineReprCompat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala-2.13/com/siriusxm/snapshot4s/InlineReprCompat.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala-2/com/siriusxm/snapshot4s/AssertFileSnapshotMacro.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala-2/com/siriusxm/snapshot4s/AssertFileSnapshotMacro.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala-2/com/siriusxm/snapshot4s/AssertInlineSnapshotMacro.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala-2/com/siriusxm/snapshot4s/AssertInlineSnapshotMacro.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala-2/com/siriusxm/snapshot4s/ReprForAdt.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala-2/com/siriusxm/snapshot4s/ReprForAdt.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala-3/com/siriusxm/snapshot4s/AssertFileSnapshotMacro.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala-3/com/siriusxm/snapshot4s/AssertFileSnapshotMacro.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala-3/com/siriusxm/snapshot4s/AssertInlineSnapshotMacro.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala-3/com/siriusxm/snapshot4s/AssertInlineSnapshotMacro.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala-3/com/siriusxm/snapshot4s/InlineReprCompat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala-3/com/siriusxm/snapshot4s/InlineReprCompat.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala-3/com/siriusxm/snapshot4s/ReprForAdt.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala-3/com/siriusxm/snapshot4s/ReprForAdt.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/ErrorMessages.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/ErrorMessages.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/FileSnapshot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/FileSnapshot.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/InlineRepr.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/InlineRepr.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/InlineSnapshot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/InlineSnapshot.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/Locations.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/Locations.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/PathApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/PathApi.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/Repr.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/Repr.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/Result.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/Result.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/ResultLike.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/ResultLike.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/SnapshotAssertions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/SnapshotAssertions.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/SnapshotConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/SnapshotConfig.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/SnapshotConfigError.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/SnapshotConfigError.scala -------------------------------------------------------------------------------- /modules/core/src/main/scala/com/siriusxm/snapshot4s/SnapshotEq.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scala/com/siriusxm/snapshot4s/SnapshotEq.scala -------------------------------------------------------------------------------- /modules/core/src/main/scalajs/com/siriusxm/snapshot4s/Path.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scalajs/com/siriusxm/snapshot4s/Path.scala -------------------------------------------------------------------------------- /modules/core/src/main/scalajs/com/siriusxm/snapshot4s/RelPath.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scalajs/com/siriusxm/snapshot4s/RelPath.scala -------------------------------------------------------------------------------- /modules/core/src/main/scalajvm/com/siriusxm/snapshot4s/Path.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scalajvm/com/siriusxm/snapshot4s/Path.scala -------------------------------------------------------------------------------- /modules/core/src/main/scalajvm/com/siriusxm/snapshot4s/RelPath.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/main/scalajvm/com/siriusxm/snapshot4s/RelPath.scala -------------------------------------------------------------------------------- /modules/core/src/test/scala-2/com/siriusxm/snapshot4s/ReprSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/test/scala-2/com/siriusxm/snapshot4s/ReprSpec.scala -------------------------------------------------------------------------------- /modules/core/src/test/scala-3/com/siriusxm/snapshot4s/ReprSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/test/scala-3/com/siriusxm/snapshot4s/ReprSpec.scala -------------------------------------------------------------------------------- /modules/core/src/test/scala/com/siriusxm/snapshot4s/AnnotationSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/test/scala/com/siriusxm/snapshot4s/AnnotationSpec.scala -------------------------------------------------------------------------------- /modules/core/src/test/scala/com/siriusxm/snapshot4s/LocationsSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/test/scala/com/siriusxm/snapshot4s/LocationsSpec.scala -------------------------------------------------------------------------------- /modules/core/src/test/scala/com/siriusxm/snapshot4s/ReprTestCases.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/test/scala/com/siriusxm/snapshot4s/ReprTestCases.scala -------------------------------------------------------------------------------- /modules/core/src/test/scalajvm/com/siriusxm/snapshot4s/FileSnapshotSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/core/src/test/scalajvm/com/siriusxm/snapshot4s/FileSnapshotSpec.scala -------------------------------------------------------------------------------- /modules/hashing/src/main/scala/com/siriusxm/snapshot4s/Hashing.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/hashing/src/main/scala/com/siriusxm/snapshot4s/Hashing.scala -------------------------------------------------------------------------------- /modules/hashing/src/test/scala/com/siriusxm/snapshot4s/HashingSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/hashing/src/test/scala/com/siriusxm/snapshot4s/HashingSpec.scala -------------------------------------------------------------------------------- /modules/munit/src/main/scala/com/siriusxm/snapshot4s/munit/MunitResultLike.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/munit/src/main/scala/com/siriusxm/snapshot4s/munit/MunitResultLike.scala -------------------------------------------------------------------------------- /modules/munit/src/main/scala/com/siriusxm/snapshot4s/munit/SnapshotAssertions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/munit/src/main/scala/com/siriusxm/snapshot4s/munit/SnapshotAssertions.scala -------------------------------------------------------------------------------- /modules/munit/src/test/scalajvm/com/siriusxm/snapshot4s/munit/InlineSnapshotSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/munit/src/test/scalajvm/com/siriusxm/snapshot4s/munit/InlineSnapshotSpec.scala -------------------------------------------------------------------------------- /modules/plugin/src/main/scala/com/siriusxm/snapshot/Snapshot4sPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/main/scala/com/siriusxm/snapshot/Snapshot4sPlugin.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/build.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/core/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/core/src/test/scala/CoreTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/core/src/test/scala/CoreTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/framework/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/framework/src/test/scala/FrameworkTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/framework/src/test/scala/FrameworkTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/project/plugins.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/test -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/utils/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/utils/src/test/scala/UtilsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/multi-project-build/utils/src/test/scala/UtilsTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/build.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/project/plugins.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/src/test/resources/snapshot/nested-directory/nested-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/src/test/scala/MunitSimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/src/test/scala/MunitSimpleTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/src/test/scala/ScalaTestSimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/src/test/scala/ScalaTestSimpleTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/src/test/scala/WeaverSimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/src/test/scala/WeaverSimpleTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/multiple-frameworks/test -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/munit/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/munit/build.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/munit/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/munit/project/plugins.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/munit/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/munit/src/test/resources/snapshot/nested-directory/nested-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/munit/src/test/scala/SimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/munit/src/test/scala/SimpleTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/munit/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/munit/test -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/build.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/scala-2/ScalaJVMAndScalaJS2Or3Test.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/scala-2/ScalaJVMAndScalaJS2Or3Test.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/scala-3/ScalaJVMAndScalaJS2Or3Test.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/scala-3/ScalaJVMAndScalaJS2Or3Test.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/scala/ScalaJVMAndScalaJSTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/scala/ScalaJVMAndScalaJSTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/scalajs-3/ScalaJVM3OrScalaJS3Test.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/scalajs-3/ScalaJVM3OrScalaJS3Test.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/scalajs/ScalaJSTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/scalajs/ScalaJSTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/scalajvm-3/ScalaJVM3OrScalaJS3Test.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/core/src/test/scalajvm-3/ScalaJVM3OrScalaJS3Test.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/project/plugins.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/projectmatrix/test -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/promote-filter/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/promote-filter/build.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/promote-filter/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/promote-filter/project/plugins.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/promote-filter/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/promote-filter/src/test/resources/snapshot/nested-directory/nested-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/promote-filter/src/test/scala/FilterTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/promote-filter/src/test/scala/FilterTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/promote-filter/src/test/scala/OtherTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/promote-filter/src/test/scala/OtherTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/promote-filter/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/promote-filter/test -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/reject-outdated-patches/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/reject-outdated-patches/build.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/reject-outdated-patches/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/reject-outdated-patches/project/plugins.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/reject-outdated-patches/src/test/scala/SimpleTest.edited: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/reject-outdated-patches/src/test/scala/SimpleTest.edited -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/reject-outdated-patches/src/test/scala/SimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/reject-outdated-patches/src/test/scala/SimpleTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/reject-outdated-patches/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/reject-outdated-patches/test -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/build.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/core/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/core/src/test/resources/snapshot/nested-directory/nested-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/core/src/test/scala/SimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/core/src/test/scala/SimpleTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/framework/js/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/framework/js/src/test/resources/snapshot/nested-directory/nested-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/framework/js/src/test/scala/SimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/framework/js/src/test/scala/SimpleTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/framework/jvm/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/framework/jvm/src/test/resources/snapshot/nested-directory/nested-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/framework/jvm/src/test/scala/SimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/framework/jvm/src/test/scala/SimpleTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.7 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/project/plugins.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/test -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/utils/shared/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/utils/shared/src/test/resources/snapshot/nested-directory/nested-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/utils/shared/src/test/scala/SimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/sbt-typelevel/utils/shared/src/test/scala/SimpleTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scala-js/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/scala-js/build.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scala-js/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.9.3 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scala-js/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/scala-js/project/plugins.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scala-js/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scala-js/src/test/resources/snapshot/nested-directory/nested-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scala-js/src/test/scala/SimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/scala-js/src/test/scala/SimpleTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scala-js/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/scala-js/test -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scalatest/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/scalatest/build.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scalatest/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/scalatest/project/plugins.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scalatest/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scalatest/src/test/resources/snapshot/nested-directory/nested-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scalatest/src/test/scala/SimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/scalatest/src/test/scala/SimpleTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/scalatest/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/scalatest/test -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/simple/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/simple/build.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/simple/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/simple/project/plugins.sbt -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/simple/src/test/resources/snapshot/existing-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/simple/src/test/resources/snapshot/nested-directory/nested-file: -------------------------------------------------------------------------------- 1 | old-contents 2 | -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/simple/src/test/scala/SimpleTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/simple/src/test/scala/SimpleTest.scala -------------------------------------------------------------------------------- /modules/plugin/src/sbt-test/sbt-snapshot4s/simple/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/plugin/src/sbt-test/sbt-snapshot4s/simple/test -------------------------------------------------------------------------------- /modules/scalatest/src/main/scala/com/siriusxm/snapshot4s/scalatest/ScalaTestResultLike.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/scalatest/src/main/scala/com/siriusxm/snapshot4s/scalatest/ScalaTestResultLike.scala -------------------------------------------------------------------------------- /modules/scalatest/src/main/scala/com/siriusxm/snapshot4s/scalatest/SnapshotAssertions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/scalatest/src/main/scala/com/siriusxm/snapshot4s/scalatest/SnapshotAssertions.scala -------------------------------------------------------------------------------- /modules/scalatest/src/test/scalajvm/com/siriusxm/snapshot4s/scalatest/InlineSnapshotSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/scalatest/src/test/scalajvm/com/siriusxm/snapshot4s/scalatest/InlineSnapshotSpec.scala -------------------------------------------------------------------------------- /modules/weaver/src/main/scala/com/siriusxm/snapshot4s/weaver/Diff.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/weaver/src/main/scala/com/siriusxm/snapshot4s/weaver/Diff.scala -------------------------------------------------------------------------------- /modules/weaver/src/main/scala/com/siriusxm/snapshot4s/weaver/SnapshotExpectations.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/weaver/src/main/scala/com/siriusxm/snapshot4s/weaver/SnapshotExpectations.scala -------------------------------------------------------------------------------- /modules/weaver/src/main/scala/com/siriusxm/snapshot4s/weaver/WeaverResultLike.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/weaver/src/main/scala/com/siriusxm/snapshot4s/weaver/WeaverResultLike.scala -------------------------------------------------------------------------------- /modules/weaver/src/test/scalajvm/com/siriusxm/snapshot4s/weaver/InlineSnapshotSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/modules/weaver/src/test/scalajvm/com/siriusxm/snapshot4s/weaver/InlineSnapshotSpec.scala -------------------------------------------------------------------------------- /project/Versions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/project/Versions.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.7 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/docusaurus.config.ts -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/package.json -------------------------------------------------------------------------------- /website/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/sidebars.ts -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/src/pages/index.module.css -------------------------------------------------------------------------------- /website/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/src/pages/index.tsx -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/logo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/static/img/logo-large.png -------------------------------------------------------------------------------- /website/static/img/logo-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/static/img/logo-medium.png -------------------------------------------------------------------------------- /website/static/img/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siriusxm/snapshot4s/HEAD/website/static/img/logo-small.png --------------------------------------------------------------------------------