[ospec:docs] test suites can now be named [skip ci]

This commit is contained in:
Pierre-Yves Gérardy 2017-07-09 17:04:26 +02:00 committed by GitHub
parent 34c3430420
commit d65fd020cd

View file

@ -252,7 +252,7 @@ o.run()
The `o.new()` method can be used to create new instances of ospec, which can be run in parallel. Note that each instance will report independently, and there's no aggregation of results. The `o.new()` method can be used to create new instances of ospec, which can be run in parallel. Note that each instance will report independently, and there's no aggregation of results.
```javascript ```javascript
var _o = o.new() var _o = o.new('optional name')
_o("a test", function() { _o("a test", function() {
_o(1).equals(1) _o(1).equals(1)
}) })