Fix example

Fixes #1530
This commit is contained in:
Pat Cavit 2017-01-10 14:36:16 -08:00 committed by GitHub
parent 301785b1a5
commit b9b45faeb5

View file

@ -21,7 +21,7 @@ To setup a test suite, create a `tests` folder and inside of it, create a test f
// file: tests/math-test.js
var o = require("mithril/ospec/ospec")
o("math", function() {
o.spec("math", function() {
o("addition works", function() {
o(1 + 2).equals(3)
})