Added cypress e2e tests for suggested improvements

This commits adds e2e tests for the suggested improvements.
I've went over the generated screenshots and they look good to me.
This commit is contained in:
Danny Shemesh
2020-04-23 18:31:22 +03:00
parent 5c902001b9
commit 862f20ef20
2 changed files with 136 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ export const addActor = function(id, name, description) {
actors[id] = { name: name, description: description, prevActor: prevActor };
if (prevActor && actors[prevActor]) {
actors[prevActor].nextActor = actors[id];
actors[prevActor].nextActor = id;
}
prevActor = id;