Reverting to cypress 9.7 in order to get applitools back in the game

This commit is contained in:
Knut Sveidqvist
2022-07-20 11:32:21 +02:00
parent ce1507c296
commit dee9cfea85
29 changed files with 59 additions and 20 deletions

View File

@@ -0,0 +1,20 @@
import { imgSnapshotTest } from '../../helpers/util';
describe('State diagram', () => {
it('should render a state with states in it', () => {
imgSnapshotTest(
`
stateDiagram
state PersonalizedCockpit {
Other
state Parent {
C
}
}
`,
{
logLevel: 0,
}
);
});
});