#927 Adding support for cypress and Percy

This commit is contained in:
Knut Sveidqvist
2019-09-11 18:53:05 +02:00
parent e37f5a6eb2
commit 9f87ab4941
84 changed files with 4795 additions and 62 deletions

View File

@@ -0,0 +1,26 @@
/* eslint-env jest */
import { imgSnapshotTest } from '../../helpers/util.js'
describe('Sequencediagram', () => {
it('should render a simple git graph', () => {
imgSnapshotTest(`
gitGraph:
options
{
"nodeSpacing": 150,
"nodeRadius": 10
}
end
commit
branch newbranch
checkout newbranch
commit
commit
checkout master
commit
commit
merge newbranch
`,
{})
})
})