Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/imageContenttype.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

//Image
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/introductionBlock.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Introduction-Block
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/linkContenttype.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

//Link
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/listingBlock.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Listing-block
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/locationContenttype.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Location content type
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/logosBlock.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Logos Block
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/mapsBlock.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Maps block
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/newsItemContenttype.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

//news-item
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Organisational unit content type
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/pageContent.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

//Page
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/personContenttype.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Person content type
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/searchBlock.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Search-block
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/separatorBlock.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// separator-block
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/sliderBlock.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Slider Block
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/tableBlock.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Table-block
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/teaserBlock.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Teaser-block
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/textBlock.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Text-block
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/tocBlock.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Table of Contents
Expand Down
2 changes: 1 addition & 1 deletion frontend/cypress/tests/a11y/videoBlock.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('a11y tests', () => {
// Since we want to visit the same URL at the start of all our tests,
// we include it in our beforeEach function so that it runs before each test
cy.visit('/');
cy.wait('@content');
cy.wait('@content').its('response.statusCode').should('eq', 200);
});

// Video Block
Expand Down
1 change: 1 addition & 0 deletions frontend/packages/volto-intranet/news/217.internal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
add a check for succesfull content request on all axe a11y tests to avaoid checking the 404 page @jackahl
Loading