12345678910111213141516 |
- import './commands';
- beforeEach(() => {
- cy.server({
- ignore: (xhr) => {
- // Ignore the webpack dev server calls that interfere in the tests
- // when testing with `yarn serve`.
- if (xhr.url.indexOf('sockjs-node/') > -1) {
- return true;
- }
- // Return the default cypress whitelist filer.
- return xhr.method === 'GET' && /\.(jsx?|html|css)(\?.*)?$/.test(xhr.url);
- },
- });
- });
|