fix: autonumber bug

This commit is contained in:
kerwin612
2022-03-11 16:32:04 +08:00
parent 3342f884ce
commit 4f5cab7f4c
3 changed files with 22 additions and 0 deletions

View File

@@ -1619,4 +1619,24 @@ participant Alice
models.lastActor().y + models.lastActor().height + mermaid.sequence.boxMargin
);
});
it('it should hide sequence numbers when autonumber is removed when autonumber is enabled', function () {
const str1 = `
sequenceDiagram
autonumber
Alice->Bob:Hello Bob, how are you?
Note right of Bob: Bob thinks
Bob-->Alice: I am good thanks!`;
mermaidAPI.parse(str1);
expect(parser.yy.showSequenceNumbers()).toBe(true);
const str2 = `
sequenceDiagram
Alice->Bob:Hello Bob, how are you?
Note right of Bob: Bob thinks
Bob-->Alice: I am good thanks!`;
mermaidAPI.parse(str2);
expect(parser.yy.showSequenceNumbers()).toBe(false);
});
});