From 087e5eaa324c9e374fd8e3237f2e75e7c2ec720d Mon Sep 17 00:00:00 2001 From: Knut Sveidqvist Date: Wed, 20 Nov 2019 19:21:19 +0100 Subject: [PATCH] #1055 Fix for tests --- src/diagrams/flowchart/parser/flow-singlenode.spec.js | 6 +++--- src/diagrams/flowchart/parser/subgraph.spec.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/diagrams/flowchart/parser/flow-singlenode.spec.js b/src/diagrams/flowchart/parser/flow-singlenode.spec.js index 1d9f4dbad..ba9f23925 100644 --- a/src/diagrams/flowchart/parser/flow-singlenode.spec.js +++ b/src/diagrams/flowchart/parser/flow-singlenode.spec.js @@ -168,7 +168,7 @@ describe('[Singlenodes] when parsing', () => { const edges = flow.parser.yy.getEdges(); expect(edges.length).toBe(0); - expect(vert['mermaid-dom-id-1'].text).toBe('1'); + expect(vert['1'].text).toBe('1'); }); it('should handle a single node with a single digit in a subgraph', function() { @@ -180,7 +180,7 @@ describe('[Singlenodes] when parsing', () => { const edges = flow.parser.yy.getEdges(); expect(edges.length).toBe(0); - expect(vert['mermaid-dom-id-1'].text).toBe('1'); + expect(vert['1'].text).toBe('1'); }); it('should handle a single node with alphanumerics starting on a num', function() { @@ -191,7 +191,7 @@ describe('[Singlenodes] when parsing', () => { const edges = flow.parser.yy.getEdges(); expect(edges.length).toBe(0); - expect(vert['mermaid-dom-id-1id'].styles.length).toBe(0); + expect(vert['1id'].styles.length).toBe(0); }); it('should handle a single node with alphanumerics containing a minus sign', function() { diff --git a/src/diagrams/flowchart/parser/subgraph.spec.js b/src/diagrams/flowchart/parser/subgraph.spec.js index de76a16b4..f08c6459e 100644 --- a/src/diagrams/flowchart/parser/subgraph.spec.js +++ b/src/diagrams/flowchart/parser/subgraph.spec.js @@ -83,7 +83,7 @@ describe('when parsing subgraphs', function() { const subgraph = subgraphs[0]; expect(subgraph.nodes.length).toBe(1); expect(subgraph.nodes[0]).toBe('A'); - expect(subgraph.id).toBe('mermaid-dom-id-1test'); + expect(subgraph.id).toBe('1test'); }); it('should handle subgraphs1', function() {