make test run with systemjs build

This commit is contained in:
jfh
2020-08-29 01:20:37 +02:00
parent 53f64d9649
commit 0bfee46b33
10 changed files with 653 additions and 542 deletions

View File

@@ -1,6 +1,6 @@
describe('UI - Accessibility', function () {
beforeEach(() => {
cy.visit('/instrumented/editor');
cy.visit('/instrumented/editor/system');
cy.injectAxe();
});

View File

@@ -1,10 +1,12 @@
/* eslint-disable max-len */
import '../../../instrumented/editor/jquery.min.js';
import '../../../instrumented/editor/jquery-ui/jquery-ui-1.8.17.custom.min.js';
// import '../../../instrumented/editor/system/jquery.min.js';
// import '../../../instrumented/editor/system/jquery-ui/jquery-ui-1.8.17.custom.min.js';
import '../../../instrumented/common/svgpathseg.js';
// import '../../../instrumented/common/svgpathseg.js';
import SvgCanvas from '../../../instrumented/svgcanvas/svgcanvas.js';
// import '../../../instrumented/'
describe('Basic Module', function () {
// helper functions
/*

View File

@@ -4,7 +4,7 @@ export const approveStorage = () => {
};
export const visitAndApproveStorage = () => {
cy.visit('/instrumented/editor');
cy.visit('/instrumented/editor/system');
approveStorage();
};