Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 342 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 342 Bytes

Twist

Declarative testing for JavaScript.

import { t, equal } from "twist"

export default [
  t("array.indexOf()", [
    t("returns the index at which a given element is in the array", [
      equal(["A", "B", "C"].indexOf("A"), 0),
    ]),
  ]),
]

Installation

npm i twist

License

MIT