fix: removed it.only

This commit is contained in:
Alexander Sage
2019-07-23 21:08:33 -07:00
parent 5c25c5563a
commit 671a892b52

View File

@@ -369,7 +369,7 @@ describe('when parsing a sequenceDiagram', function () {
expect(messages[0].from).toBe('Alice')
expect(messages[1].from).toBe('Bob')
})
it.only('it should add a rect around sequence', function () {
it('it should add a rect around sequence', function () {
const str = `
sequenceDiagram
Alice->Bob: Hello Bob, how are you?
@@ -393,7 +393,7 @@ describe('when parsing a sequenceDiagram', function () {
expect(messages[4].type).toEqual(parser.yy.LINETYPE.RECT_END)
})
it.only('it should allow for nested rects', function () {
it('it should allow for nested rects', function () {
const str = `
sequenceDiagram
Alice->Bob: Hello Bob, how are you?