editor.js/test/cypress/support/index.ts

22 lines
413 B
TypeScript
Raw Normal View History

/**
* This file is processed and
* loaded automatically before the test files.
*
* This is a great place to put global configuration and
* behavior that modifies Cypress.
*/
import '@cypress/code-coverage/support';
/**
* File with the helpful commands
*/
import './commands';
/**
* Before-each hook for the cypress tests
*/
beforeEach((): void => {
cy.visit('test/cypress/fixtures/test.html');
});