You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running JUnit tests on Scala.js 3.0.0-M3, tests annotated on abstract super-classes do not run. When running the the same test on Scala JVM, they all run.
Running JVM tests 2.11 - 3.0.0-M3 I get 354 tests.
Running JS tests 2.11 - 2.13, 354 tests and 3.0.0-M3, 284
All the tests classes are run but if I look at one example: YearMonthTest extends the abstract class TemporalTest which in turn extends the abstract class TemporalAccessorTest.
On JVM there are 36 test. On JS only 26 run and there are 26 tests on YearMonthTest and 6 on TemporalTest and 4 on TemporalAccessorTest.