ScalaTest is published for Scala 3 RC1, but when I am trying to use ScalaTest in a Scala 3 project it results in errors like:
[error] 11 | stack.pop() should be (2)
[error] | ^^^^^^^^^^^^^^^^^^
[error] |value should is not a member of Int, but could be made available as an extension method.
[error] |
[error] |The following import might make progress towards fixing the problem:
Even the sample ExampleSpec
from the ScalaTest front page does not compile:
Is there some trick to make it work?