Merge vitest

This commit is contained in:
Sidharth Vinod
2022-09-20 23:51:21 +05:30
parent e0aae3e31f
commit 3b30232e88
27 changed files with 657 additions and 1660 deletions

View File

@@ -62,7 +62,7 @@ describe('when parsing subgraphs', function () {
expect(subgraph.id).toBe('some-id');
});
xit('should handle subgraph without id and space in title', function () {
it.skip('should handle subgraph without id and space in title', function () {
const res = flow.parser.parse('graph TB\nsubgraph Some Title\n\ta1-->a2\nend');
const subgraphs = flow.parser.yy.getSubGraphs();
expect(subgraphs.length).toBe(1);