Remove duplicate spec

This commit is contained in:
Lorin Thwaits 2022-08-19 18:41:52 +01:00
parent 6635d4bc97
commit e1977dd889
1 changed files with 0 additions and 6 deletions

View File

@ -159,12 +159,6 @@ describe('[Text] when parsing', () => {
const edges = flow.parser.yy.getEdges();
expect(vert['a'].text).toBe('v');
});
it('should handle keywords', function () {
const res = flow.parser.parse('graph TD;V-->a[v]');
const vert = flow.parser.yy.getVertices();
const edges = flow.parser.yy.getEdges();
expect(vert['a'].text).toBe('v');
});
it('should handle quoted text', function () {
const res = flow.parser.parse('graph TD;V-- "test string()" -->a[v]');
const vert = flow.parser.yy.getVertices();