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 @@ -1041,7 +1041,7 @@ object Build {
1041
1041
++ (dir / " shared/src/test/require-jdk7" ** " *.scala" ).get
1042
1042
1043
1043
++ (dir / " js/src/test/scala" ** ((" *.scala" : FileFilter )
1044
- -- " ExportsTest.scala" // JS exports + do not compile because of a var in a structural type
1044
+ -- " ExportsTest.scala" // JS exports + IR checking error
1045
1045
-- " ObjectTest.scala" // compile errors caused by #9588
1046
1046
-- " StackTraceTest.scala" // would require `npm install source-map-support`
1047
1047
-- " UnionTypeTest.scala" // requires the Scala 2 macro defined in Typechecking*.scala
@@ -1057,12 +1057,8 @@ object Build {
1057
1057
// Putting them here instead of above makes sure that we do not regress on compilation+linking.
1058
1058
Test / testOptions += Tests .Filter { name =>
1059
1059
! Set [String ](
1060
- " org.scalajs.testsuite.compiler.InteroperabilityTest" , // 3 tests require JS exports, all other tests pass
1061
-
1062
1060
" org.scalajs.testsuite.jsinterop.AsyncTest" , // needs JS exports in PromiseMock.scala
1063
- " org.scalajs.testsuite.jsinterop.DynamicTest" , // one test requires JS exports, all other tests pass
1064
1061
" org.scalajs.testsuite.jsinterop.JSExportStaticTest" , // JS exports
1065
- " org.scalajs.testsuite.jsinterop.NonNativeJSTypeTest" , // 1 test fails because of a progression for value class fields (needs an update upstream)
1066
1062
1067
1063
// Not investigated so far
1068
1064
" 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