Use Wordspec for all tests

It was discussed and team agreed we'd rather have consistent tests even
if the compilation is slightly slower.
This commit is contained in:
Christopher Batey 2017-12-18 15:37:30 +00:00
parent c394ee7aaa
commit 97180eb6ed
34 changed files with 1390 additions and 1360 deletions

View file

@ -446,10 +446,3 @@ def akkaModule(name: String): Project =
.settings(akka.Formatting.formatSettings)
.enablePlugins(BootstrapGenjavadoc)
lazy val typedTests = taskKey[Unit]("Runs all the typed tests")
typedTests := {
(test in(actorTyped, Test)).value
(test in(actorTypedTests, Test)).value
(test in(clusterTyped, Test)).value
(test in(clusterShardingTyped, Test)).value
}