Updating cypress tests

This commit is contained in:
Knut Sveidqvist
2019-09-18 18:25:06 +02:00
parent 23e6df04d4
commit 21622f575b
11 changed files with 175 additions and 116 deletions

View File

@@ -1,16 +0,0 @@
/* eslint-env jest */
const { toMatchImageSnapshot } = require('jest-image-snapshot')
expect.extend({ toMatchImageSnapshot })
describe('Sequencediagram', () => {
it('should render a simple sequence diagrams', async () => {
const url = 'http://localhost:9000/webpackUsage.html'
await page.goto(url)
const image = await page.screenshot()
expect(image).toMatchImageSnapshot()
})
})