diff --git a/src/reference/02-DetailTopics/05-Plugins-and-Best-Practices/05-Testing-sbt-plugins.md b/src/reference/02-DetailTopics/05-Plugins-and-Best-Practices/05-Testing-sbt-plugins.md index 9f56f649..bd537e34 100644 --- a/src/reference/02-DetailTopics/05-Plugins-and-Best-Practices/05-Testing-sbt-plugins.md +++ b/src/reference/02-DetailTopics/05-Plugins-and-Best-Practices/05-Testing-sbt-plugins.md @@ -135,6 +135,9 @@ To run the scripts, go back to your plugin project, and run: > scripted ``` +**Note**: `scripted` runs all your tests, you can execute single scripted test with `scripted sbt-assembly/simple` + + This will copy your test build into a temporary dir, and executes the `test` script. If everything works out, you'd see `publishLocal` running, then: ```