You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
describe'NestedDescribes', ->it'should not be nested', ->expect(0).toEqual(1)
describe'Nested 1', ->it'should be nested', ->expect(0).toEqual(1)
it'should not be nested either', ->expect(0).toEqual(1)
And I get the following log:
NestedDescribes
✘ should not be nested either
➤ Expected 0 to equal 1.
Nested 1
✘ should not be nested
➤ Expected 0 to equal 1.
✘ should be nested
➤ Expected 0 to equal 1.
The text was updated successfully, but these errors were encountered:
Thanks for reporting with a test case! It's fixed:
NestedDescribes
✘ should not be nested
➤ Expected 0 to equal 1.
✘ should not be nested either
➤ Expected 0 to equal 1.
Nested 1
✘ should be nested
➤ Expected 0 to equal 1.
ERROR: 3 specs, 3 failures
I have this:
And I get the following log:
The text was updated successfully, but these errors were encountered: