lawl-spec-reporter
Version:
Spec reporter for jasmine, based on jasmine-spec-reporter, outputs in LolSpeak
42 lines (29 loc) • 874 B
text/coffeescript
describe 'first suite', ->
it 'should be ok', ->
expect(true).toBe(true)
it 'should be ok', ->
expect(true).toBe(true)
it 'should failed', ->
expect(true).toBe(false)
it 'should be ok', ->
expect(true).toBe(true)
describe 'second suite', ->
it 'should failed', ->
expect(true).toBe(false)
it 'should be ok', ->
expect(true).toBe(true)
describe 'first child suite', ->
describe 'first grandchild suite', ->
it 'should failed', ->
expect(true).toBe(false)
expect(true).toBe(false)
expect(true).toBe(true)
it 'should failed', ->
expect(true).toBe(false)
it 'should be ok', ->
expect(true).toBe(true)
describe 'second grandchild suite', ->
it 'should failed', ->
expect(true).toBe(false)
it 'should be ok', ->
expect(true).toBe(true)