#1874 #1865 Fix for rgression issue

This commit is contained in:
Knut Sveidqvist
2021-01-28 07:52:17 +01:00
parent 177cd30854
commit fc5693067c
3 changed files with 51 additions and 16 deletions

View File

@@ -96,5 +96,13 @@ describe('Configuration', () => {
.should('exist')
.and('include', 'url(http://localhost');
});
it('should not taint the initial configuration when using multiple directives', () => {
const url = 'http://localhost:9000/regression/issue-1874.html';
cy.viewport(1440, 1024);
cy.visit(url);
cy.get('svg');
cy.percySnapshot();
});
});
});