scalatestplus-play
scalatestplus-play copied to clipboard
ScalaTest + Play
- Updated to use ScalaTest 3.2.13. - Dropped PhantomJS support. - Added support for new MS Edge browser support.
Updates [org.scalameta:scalafmt-core](https://github.com/scalameta/scalafmt) from 2.5.3 to 2.7.5. [GitHub Release Notes](https://github.com/scalameta/scalafmt/releases/tag/v2.7.5) - [Version Diff](https://github.com/scalameta/scalafmt/compare/v2.5.3...v2.7.5) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...
this allows implementing specs to use either sync or async suites
[Question] OneBrowserPerSuite: How to prevent browser startup when skipping tests using this trait?
I'm in a scenario where unittests and fluentlenium integration tests are placed in the same module but need to be run seperately at different stages of deployment in different environments....
I have a [async test suite](http://www.scalatest.org/user_guide/async_testing) that extends `AsyncFunSpec`. Now, it seems to be not possible to also mix-in `GuiceOneAppPerSuite`: ```scala // does not work class PostSpec extends AsyncFunSpec with...
I'm trying to use `BeforeAndAfterAll` and an `afterall` to cleanup some stuff. But by the time `afterall` gets called, Play has already shutdown. In `BaseOneAppPerSuite` it does this: ``` val...
When trying to run the test using `GuiceOneAppPerSuite` doesn't seem like the JVM arguments set in `Build.scala` are being passed into the Application instance of the JVM. ``` implicit val...