From ae148a2c10af7ddd120ee54ab57fe2f714193165 Mon Sep 17 00:00:00 2001 From: egavr Date: Mon, 28 Mar 2016 17:25:48 +0300 Subject: [PATCH] Update docs for option 'specs' --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index adafac532..f9fb187d2 100644 --- a/README.md +++ b/README.md @@ -148,8 +148,14 @@ module.exports = { For example, ```javascript specs: [ - 'tests/desktop', - 'tests/touch' + { // run tests associated with this path in all browsers + files: 'tests/desktop' // which are configured in option `browsers` + }, + 'tests/deskpad', // the alias for the previous case + { + files: 'tests/touch', // run tests associated with this path in a browser with id `browser` + browsers: ['browser'] // which is configured in option `browsers` + } ] ```