Skip to content
This repository has been archived by the owner on Mar 28, 2018. It is now read-only.

Latest commit

 

History

History
40 lines (27 loc) · 725 Bytes

StaticReadmePart.md

File metadata and controls

40 lines (27 loc) · 725 Bytes

Little Spec

A small test framework for sbt and Scala.js that allows you to write specifications.

Installation

sbt

Add the framework as library dependency

libraryDependencies += "org.qirx" %% "little-spec" % "version" % "test"

Add the test framework

testFrameworks += new TestFramework("org.qirx.littlespec.sbt.TestFramework")

Scala.js

Add the framework as library dependency

libraryDependencies += "org.qirx" %%% "little-spec" % "version" % "test"

Add the test framework

ScalaJSKeys.scalaJSTestFramework in Test := "org.qirx.littlespec.scalajs.TestFramework"

Usage