File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed
sbt-dotty/sbt-test/scalajs/basic/project Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -1029,7 +1029,7 @@ object Build {
1029
1029
++ (dir / " shared/src/test/require-jdk7" ** " *.scala" ).get
1030
1030
1031
1031
++ (dir / " js/src/test/scala" ** ((" *.scala" : FileFilter )
1032
- -- " ExportsTest.scala" // JS exports + do not compile because of a var in a structural type
1032
+ -- " ExportsTest.scala" // JS exports + IR checking error
1033
1033
-- " ObjectTest.scala" // compile errors caused by #9588
1034
1034
-- " StackTraceTest.scala" // would require `npm install source-map-support`
1035
1035
-- " UnionTypeTest.scala" // requires the Scala 2 macro defined in Typechecking*.scala
@@ -1045,12 +1045,8 @@ object Build {
1045
1045
// Putting them here instead of above makes sure that we do not regress on compilation+linking.
1046
1046
Test / testOptions += Tests .Filter { name =>
1047
1047
! Set [String ](
1048
- " org.scalajs.testsuite.compiler.InteroperabilityTest" , // 3 tests require JS exports, all other tests pass
1049
-
1050
1048
" org.scalajs.testsuite.jsinterop.AsyncTest" , // needs JS exports in PromiseMock.scala
1051
- " org.scalajs.testsuite.jsinterop.DynamicTest" , // one test requires JS exports, all other tests pass
1052
1049
" org.scalajs.testsuite.jsinterop.JSExportStaticTest" , // JS exports
1053
- " org.scalajs.testsuite.jsinterop.NonNativeJSTypeTest" , // 1 test fails because of a progression for value class fields (needs an update upstream)
1054
1050
1055
1051
// Not investigated so far
1056
1052
" org.scalajs.testsuite.junit.JUnitAbstractClassTestCheck" ,
Original file line number Diff line number Diff line change 2
2
//
3
3
// e.g. addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.1.0")
4
4
5
- addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.2 .0" )
5
+ addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.3 .0" )
6
6
7
7
addSbtPlugin(" org.xerial.sbt" % " sbt-sonatype" % " 3.6" )
8
8
Original file line number Diff line number Diff line change 1
1
addSbtPlugin(" ch.epfl.lamp" % " sbt-dotty" % sys.props(" plugin.version" ))
2
- addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.2 .0" )
2
+ addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.3 .0" )
You can’t perform that action at this time.
0 commit comments