sloth.elm

> WIP

Usage no npm install needed!

<script type="module">
  import slothElm from 'https://cdn.skypack.dev/sloth.elm';
</script>

README

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