#945 Some cleanup

This commit is contained in:
Knut Sveidqvist
2019-10-05 09:02:20 +02:00
parent 65cbfbdb40
commit d4306e61c2
6 changed files with 323 additions and 427 deletions

View File

@@ -79,11 +79,15 @@ describe('State diagram', () => {
`
stateDiagram
[*]-->TV
state TV {
[*] --> Off: Off to start with
On --> Off : Turn off
Off --> On : Turn on
}
TV--> Console : KarlMartin
state Console {
[*] --> Off2: Off to start with
On2--> Off2 : Turn off
@@ -95,8 +99,6 @@ describe('State diagram', () => {
Dead-->Alive
}
}
TV--> Console
Console --> TV
`,
{ logLevel: 0 }
);