From d65fd020cd4b0e4b625ba36040ca0db88cb95cf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Yves=20G=C3=A9rardy?= Date: Sun, 9 Jul 2017 17:04:26 +0200 Subject: [PATCH] [ospec:docs] test suites can now be named [skip ci] --- ospec/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ospec/README.md b/ospec/README.md index 8b9c2a79..5a5baf1b 100644 --- a/ospec/README.md +++ b/ospec/README.md @@ -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. ```javascript -var _o = o.new() +var _o = o.new('optional name') _o("a test", function() { _o(1).equals(1) })