davemo / jasmine-only

Exclusivity spec helpers for jasmine that let you isolate spec runs to only one `describe` or `it`

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support jasmine-given

searls opened this issue · comments

Because I'm lazy and want to do Then.only.

As per our discussion, this makes sense to add as a feature to jasmine-given via some simple detection mechanism

if(window.it.only) { // or some appropriate detection mechanism
   window.Then.only = window.it.only;
}

:)

And if only Then was a simple alias still  :-P

On Tue, Sep 10, 2013 at 12:14 PM, David Mosher notifications@github.com
wrote:

As per our discussion, this makes sense to add as a feature to jasmine-given via some simple detection mechanism

if(window.it.only) { // or some appropriate detection mechanism
   window.Then.only = window.it.only;
}

:)

Reply to this email directly or view it on GitHub:
#1 (comment)

You can close this. I've added support in jasmine-given