diff --git a/scalafmt-tests-community/other/src/test/scala/org/scalafmt/community/other/CommunityScalaJsSuite.scala b/scalafmt-tests-community/other/src/test/scala/org/scalafmt/community/other/CommunityScalaJsSuite.scala new file mode 100644 index 0000000000..4bbcefecc9 --- /dev/null +++ b/scalafmt-tests-community/other/src/test/scala/org/scalafmt/community/other/CommunityScalaJsSuite.scala @@ -0,0 +1,15 @@ +package org.scalafmt.community.other + +import org.scalafmt.community.common.CommunityRepoSuite + +import scala.meta._ + +abstract class CommunityScalaJsSuite(name: String) + extends CommunityRepoSuite("https://github.com/scala-js/scala-js.git", name) + +class CommunityScalaJs1_17Suite extends CommunityScalaJsSuite("scala-js-1.17") { + + override protected def builds = + Seq(getBuild("v1.17.0", dialects.Scala213, 787)) + +}