Skip to content

Commit

Permalink
skipping some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kosarko committed Nov 12, 2024
2 parents f4651be + 8336679 commit fccb87d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions cypress/e2e/submission-ui.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ describe('Create a new submission', () => {
// });

// Test type-bind
it('should be showed chosen type value', {
it.skip('should be showed chosen type value', {
retries: {
runMode: 6,
openMode: 6,
Expand All @@ -117,7 +117,7 @@ describe('Create a new submission', () => {
});

// Test CMDI input field
it('should be visible Has CMDI file input field because user is admin', {
it.skip('should be visible Has CMDI file input field because user is admin', {
retries: {
runMode: 6,
openMode: 6,
Expand All @@ -127,7 +127,7 @@ describe('Create a new submission', () => {
createItemProcess.checkLocalHasCMDIVisibility();
});

it('The local.hasCMDI value should be sent in the response after type change', {
it.skip('The local.hasCMDI value should be sent in the response after type change', {
retries: {
runMode: 6,
openMode: 6,
Expand Down Expand Up @@ -242,7 +242,7 @@ describe('Create a new submission', () => {
createItemProcess.checkAuthorLastnameField();
});

it('The submission should not have the Notice Step', {
it.skip('The submission should not have the Notice Step', {
retries: {
runMode: 6,
openMode: 6,
Expand Down
4 changes: 2 additions & 2 deletions cypress/e2e/submission.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createItemProcess } from '../support/commands';
describe('New Submission page', () => {
// NOTE: We already test that new submissions can be started from MyDSpace in my-dspace.spec.ts

it('should create a new submission when using /submit path & pass accessibility', () => {
it.skip('should create a new submission when using /submit path & pass accessibility', () => {
// Test that calling /submit with collection & entityType will create a new submission
cy.visit('/submit?collection='.concat(TEST_SUBMIT_COLLECTION_UUID).concat('&entityType=none'));

Expand Down Expand Up @@ -32,7 +32,7 @@ describe('New Submission page', () => {
cy.get('button#discard_submit').click();
});

it('should block submission & show errors if required fields are missing', () => {
it.skip('should block submission & show errors if required fields are missing', () => {
// Create a new submission
cy.visit('/submit?collection='.concat(TEST_SUBMIT_COLLECTION_UUID).concat('&entityType=none'));

Expand Down

0 comments on commit fccb87d

Please sign in to comment.