Skip to content

poying/sloth.elm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sloth.elm

elm docs npm package

Sloth is a testing framework for Elm. It is inspired from the Node.js module Mocha.

module MyTest where


import Sloth exposing (..)
import Sloth.Assertion exposing (..)


tests =
  start
    `describe` "description"
      `it` "should pass" =>
        (1 `shouldBe` 1)
      `it` "should fail" =>
        (1 `shouldNotBe` 1)
    `end` 1

Quick start

  1. Get sloth command from npm:
$ npm i -g sloth.elm
  1. Create a folder for test files:
$ mkdir test
  1. And use elm-package to install poying/sloth.elm:
$ cd test
$ elm-package install poying/sloth.elm