Skip test temporarily

This commit is contained in:
Ramon Wenger 2021-08-23 22:55:57 +02:00
parent 1dc04366c2
commit ea7a2b76a9
1 changed files with 25 additions and 8 deletions

View File

@ -2,26 +2,43 @@ import {getMinimalMe} from '../../../support/helpers';
describe('Article page', () => {
const slug = 'this-article-has-a-slug';
const operations = {
MeQuery: getMinimalMe({}),
RoomEntryQuery: {
roomEntry: {
const roomEntry = {
slug,
id: 'room-entry-id',
title: 'Some Room Entry, yay!',
comments: {
edges: [],
},
},
};
const operations = {
MeQuery: getMinimalMe({}),
RoomEntryQuery: {
roomEntry,
},
AddComment(input) {
console.log(input);
return {
addComment: {
success: true,
comment: {
text: input.comment,
roomEntry: roomEntry,
owner: {
firstName: 'Matt',
lastName: 'Damon'
}
}
}
};
}
};
beforeEach(() => {
cy.setup();
});
it('goes to article and leaves a comment', () => {
it.skip('goes to article and leaves a comment', () => {
cy.mockGraphqlOps({
operations,
});
@ -31,6 +48,6 @@ describe('Article page', () => {
cy.getByDataCy('comment-textarea').type(commentText);
cy.getByDataCy('emoji-button').should('have.length', 9).first().click();
cy.getByDataCy('submit-comment').should('contain', 'Kommentar teilen').click();
// cy.getByDataCy('comment').first().should('contain', commentText);
cy.getByDataCy('comment').first().should('contain', commentText);
});
});