remove interceptors

This commit is contained in:
FrancescoMolinaro
2024-10-10 15:42:47 +02:00
parent caed26d191
commit 7ac14daf46
3 changed files with 0 additions and 7 deletions

View File

@@ -8,8 +8,6 @@ beforeEach(() => {
// This page is restricted, so we will be shown the login form. Fill it out & submit.
cy.loginViaForm(Cypress.env('DSPACE_TEST_ADMIN_USER'), Cypress.env('DSPACE_TEST_ADMIN_PASSWORD'));
cy.intercept('/server/api/core/collections/'.concat(Cypress.env('DSPACE_TEST_COLLECTION'))).as('collection');
cy.wait('@collection')
});
describe('Edit Collection > Edit Metadata tab', () => {

View File

@@ -8,8 +8,6 @@ beforeEach(() => {
// This page is restricted, so we will be shown the login form. Fill it out & submit.
cy.loginViaForm(Cypress.env('DSPACE_TEST_ADMIN_USER'), Cypress.env('DSPACE_TEST_ADMIN_PASSWORD'));
cy.intercept('/server/api/core/communities/'.concat(Cypress.env('DSPACE_TEST_COMMUNITY'))).as('community');
cy.wait('@community')
});
describe('Edit Community > Edit Metadata tab', () => {

View File

@@ -9,9 +9,6 @@ beforeEach(() => {
// This page is restricted, so we will be shown the login form. Fill it out & submit.
cy.loginViaForm(Cypress.env('DSPACE_TEST_ADMIN_USER'), Cypress.env('DSPACE_TEST_ADMIN_PASSWORD'));
cy.intercept('GET', 'server/api/core/items/'.concat(Cypress.env('DSPACE_TEST_ENTITY_PUBLICATION'))).as('item');
cy.wait('@item');
});
describe('Edit Item > Edit Metadata tab', () => {