diff --git a/scalafmt-tests-community/other/src/test/scala/org/scalafmt/community/other/CommunityZioSuite.scala b/scalafmt-tests-community/other/src/test/scala/org/scalafmt/community/other/CommunityZioSuite.scala new file mode 100644 index 0000000000..da87035289 --- /dev/null +++ b/scalafmt-tests-community/other/src/test/scala/org/scalafmt/community/other/CommunityZioSuite.scala @@ -0,0 +1,14 @@ +package org.scalafmt.community.other + +import org.scalafmt.community.common.CommunityRepoSuite + +import scala.meta._ + +abstract class CommunityZioSuite(name: String) + extends CommunityRepoSuite("https://github.com/zio/zio.git", name) + +class CommunityZio_2_1_Suite extends CommunityZioSuite("zio-2.1") { + + override protected def builds = Seq(getBuild("v2.1.9", dialects.Scala213, 453)) + +}