From 943487ec9487c2efe70e2557c378538dad736829 Mon Sep 17 00:00:00 2001 From: Albert Meltzer <7529386+kitbellew@users.noreply.github.com> Date: Sun, 29 Sep 2024 22:38:04 -0700 Subject: [PATCH] CommunitySuite: test scala.js version 1.17.0 --- .../community/other/CommunityScalaJsSuite.scala | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 scalafmt-tests-community/other/src/test/scala/org/scalafmt/community/other/CommunityScalaJsSuite.scala 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)) + +}