Fix typos in test cases

This commit is contained in:
Tyler Long
2018-12-17 14:42:52 +08:00
parent a4992963b3
commit e8aebb00ee

View File

@@ -33,7 +33,7 @@ describe('when parsing ', function () {
expect(subgraph.title).toBe('One')
})
it('should handle angle bracket ' > ' as direction LR', function () {
it("should handle angle bracket ' > ' as direction LR", function () {
const res = flow.parser.parse('graph >;A-->B;')
const vert = flow.parser.yy.getVertices()
@@ -51,7 +51,7 @@ describe('when parsing ', function () {
expect(edges[0].text).toBe('')
})
it('should handle angle bracket ' < ' as direction RL', function () {
it("should handle angle bracket ' < ' as direction RL", function () {
const res = flow.parser.parse('graph <;A-->B;')
const vert = flow.parser.yy.getVertices()
@@ -69,7 +69,7 @@ describe('when parsing ', function () {
expect(edges[0].text).toBe('')
})
it('should handle caret ' ^ ' as direction BT', function () {
it("should handle caret ' ^ ' as direction BT", function () {
const res = flow.parser.parse('graph ^;A-->B;')
const vert = flow.parser.yy.getVertices()