Merge pull request #994 from edekadigital/bug-478

#478 API crashes on 2nd render() call
This commit is contained in:
Knut Sveidqvist
2019-10-15 19:40:29 +02:00
committed by GitHub
3 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/* eslint-env jest */
describe('Rerendering', () => {
it('should be able to render and rerender a graph via API', () => {
const url = 'http://localhost:9000/rerender.html';
cy.viewport(1440, 1024);
cy.visit(url);
cy.get('#graph #A').should('have.text', 'XMas');
cy.get('body')
.find('#rerender')
.click({ force: true });
cy.get('#graph #A').should('have.text', 'Saturday');
});
});