mirror of https://github.com/sbt/sbt.git
6 lines
150 B
Scala
6 lines
150 B
Scala
|
|
import sbt._
|
||
|
|
|
||
|
|
class TestProject(info: ProjectInfo) extends DefaultProject(info) with Marker
|
||
|
|
{
|
||
|
|
lazy val interactiveTest = interactiveTask { mark() }
|
||
|
|
}
|