|
@@ -24,7 +24,7 @@ context('Comment', () => {
|
|
|
// until
|
|
// until
|
|
|
return cy.get('.layout-root').then($elem => $elem.hasClass('editing'));
|
|
return cy.get('.layout-root').then($elem => $elem.hasClass('editing'));
|
|
|
});
|
|
});
|
|
|
- cy.get('.CodeMirror').should('be.visible');
|
|
|
|
|
|
|
+ cy.get('.cm-content').should('be.visible');
|
|
|
|
|
|
|
|
cy.getByTestid('page-editor').should('be.visible');
|
|
cy.getByTestid('page-editor').should('be.visible');
|
|
|
cy.getByTestid('save-page-btn').click();
|
|
cy.getByTestid('save-page-btn').click();
|
|
@@ -43,7 +43,7 @@ context('Comment', () => {
|
|
|
return cy.get('.comment-write').then($elem => $elem.is(':visible'));
|
|
return cy.get('.comment-write').then($elem => $elem.is(':visible'));
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
- cy.get('.CodeMirror').type(commetText);
|
|
|
|
|
|
|
+ cy.get('.cm-content').type(commetText);
|
|
|
cy.getByTestid("comment-submit-button").eq(0).click();
|
|
cy.getByTestid("comment-submit-button").eq(0).click();
|
|
|
|
|
|
|
|
// Check update comment count
|
|
// Check update comment count
|
|
@@ -65,71 +65,76 @@ context('Comment', () => {
|
|
|
return cy.get('.comment-write').then($elem => $elem.is(':visible'));
|
|
return cy.get('.comment-write').then($elem => $elem.is(':visible'));
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
- cy.get('.CodeMirror').type(commetText);
|
|
|
|
|
|
|
+ cy.get('.cm-content').type(commetText);
|
|
|
cy.getByTestid("comment-submit-button").eq(0).click();
|
|
cy.getByTestid("comment-submit-button").eq(0).click();
|
|
|
|
|
|
|
|
|
|
+ // TODO : https://redmine.weseek.co.jp/issues/139431
|
|
|
// Check update comment count
|
|
// Check update comment count
|
|
|
- commentCount += 1
|
|
|
|
|
- cy.getByTestid('page-comment-button').contains(commentCount);
|
|
|
|
|
- cy.screenshot(`${ssPrefix}2-reply-comments`);
|
|
|
|
|
|
|
+ // commentCount += 1
|
|
|
|
|
+ // cy.getByTestid('page-comment-button').contains(commentCount);
|
|
|
|
|
+ // cy.screenshot(`${ssPrefix}2-reply-comments`);
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
- it('Successfully delete comments', () => {
|
|
|
|
|
|
|
+ // TODO:https://redmine.weseek.co.jp/issues/139467
|
|
|
|
|
+ // it('Successfully delete comments', () => {
|
|
|
|
|
|
|
|
- cy.getByTestid('page-comment-button').click();
|
|
|
|
|
|
|
+ // cy.getByTestid('page-comment-button').click();
|
|
|
|
|
|
|
|
- cy.get('.page-comments').should('be.visible');
|
|
|
|
|
- cy.getByTestid('comment-delete-button').eq(0).click({force: true});
|
|
|
|
|
- cy.get('.modal-content').then($elem => $elem.is(':visible'));
|
|
|
|
|
- cy.get('.modal-footer > button:nth-child(3)').click();
|
|
|
|
|
|
|
+ // cy.get('.page-comments').should('be.visible');
|
|
|
|
|
+ // cy.getByTestid('comment-delete-button').eq(0).click({force: true});
|
|
|
|
|
+ // cy.get('.modal-content').then($elem => $elem.is(':visible'));
|
|
|
|
|
+ // cy.get('.modal-footer > button:nth-child(3)').click();
|
|
|
|
|
|
|
|
- // Check update comment count
|
|
|
|
|
- commentCount -= 2
|
|
|
|
|
- cy.getByTestid('page-comment-button').contains(commentCount);
|
|
|
|
|
- cy.screenshot(`${ssPrefix}3-delete-comments`);
|
|
|
|
|
- });
|
|
|
|
|
|
|
+ // // Check update comment count
|
|
|
|
|
+ // commentCount -= 2
|
|
|
|
|
+ // cy.getByTestid('page-comment-button').contains(commentCount);
|
|
|
|
|
+ // cy.screenshot(`${ssPrefix}3-delete-comments`);
|
|
|
|
|
+ // });
|
|
|
|
|
|
|
|
- // Mention username in comment
|
|
|
|
|
- it('Successfully mention username in comment', () => {
|
|
|
|
|
- const username = '@adm';
|
|
|
|
|
|
|
|
|
|
- cy.getByTestid('page-comment-button').click();
|
|
|
|
|
|
|
+ // TODO: https://redmine.weseek.co.jp/issues/139520
|
|
|
|
|
+ // // Mention username in comment
|
|
|
|
|
+ // it('Successfully mention username in comment', () => {
|
|
|
|
|
+ // const username = '@adm';
|
|
|
|
|
|
|
|
- // Open comment editor
|
|
|
|
|
- cy.waitUntil(() => {
|
|
|
|
|
- // do
|
|
|
|
|
- cy.getByTestid('open-comment-editor-button').click();
|
|
|
|
|
- // wait until
|
|
|
|
|
- return cy.get('.comment-write').then($elem => $elem.is(':visible'));
|
|
|
|
|
- });
|
|
|
|
|
|
|
+ // cy.getByTestid('page-comment-button').click();
|
|
|
|
|
|
|
|
- cy.appendTextToEditorUntilContains(username);
|
|
|
|
|
|
|
+ // // Open comment editor
|
|
|
|
|
+ // cy.waitUntil(() => {
|
|
|
|
|
+ // // do
|
|
|
|
|
+ // cy.getByTestid('open-comment-editor-button').click();
|
|
|
|
|
+ // // wait until
|
|
|
|
|
+ // return cy.get('.comment-write').then($elem => $elem.is(':visible'));
|
|
|
|
|
+ // });
|
|
|
|
|
|
|
|
- cy.get('#comments-container').within(() => { cy.screenshot(`${ssPrefix}4-mention-username-found`) });
|
|
|
|
|
- // Click on mentioned username
|
|
|
|
|
- cy.get('.CodeMirror-hints > li').first().click();
|
|
|
|
|
- cy.get('#comments-container').within(() => { cy.screenshot(`${ssPrefix}5-mention-username-mentioned`) });
|
|
|
|
|
- });
|
|
|
|
|
|
|
+ // cy.appendTextToEditorUntilContains(username);
|
|
|
|
|
|
|
|
- it('Username not found when mention username in comment', () => {
|
|
|
|
|
- const username = '@user';
|
|
|
|
|
|
|
+ // cy.get('#comments-container').within(() => { cy.screenshot(`${ssPrefix}4-mention-username-found`) });
|
|
|
|
|
+ // // Click on mentioned username
|
|
|
|
|
+ // cy.get('.CodeMirror-hints > li').first().click();
|
|
|
|
|
+ // cy.get('#comments-container').within(() => { cy.screenshot(`${ssPrefix}5-mention-username-mentioned`) });
|
|
|
|
|
+ // });
|
|
|
|
|
|
|
|
- cy.getByTestid('page-comment-button').click();
|
|
|
|
|
|
|
+ // TODO: https://redmine.weseek.co.jp/issues/139520
|
|
|
|
|
+ // it('Username not found when mention username in comment', () => {
|
|
|
|
|
+ // const username = '@user';
|
|
|
|
|
|
|
|
- // Open comment editor
|
|
|
|
|
- cy.waitUntil(() => {
|
|
|
|
|
- // do
|
|
|
|
|
- cy.getByTestid('open-comment-editor-button').click();
|
|
|
|
|
- // wait until
|
|
|
|
|
- return cy.get('.comment-write').then($elem => $elem.is(':visible'));
|
|
|
|
|
- });
|
|
|
|
|
|
|
+ // cy.getByTestid('page-comment-button').click();
|
|
|
|
|
|
|
|
- cy.appendTextToEditorUntilContains(username);
|
|
|
|
|
|
|
+ // // Open comment editor
|
|
|
|
|
+ // cy.waitUntil(() => {
|
|
|
|
|
+ // // do
|
|
|
|
|
+ // cy.getByTestid('open-comment-editor-button').click();
|
|
|
|
|
+ // // wait until
|
|
|
|
|
+ // return cy.get('.comment-write').then($elem => $elem.is(':visible'));
|
|
|
|
|
+ // });
|
|
|
|
|
|
|
|
- cy.get('#comments-container').within(() => { cy.screenshot(`${ssPrefix}6-mention-username-not-found`) });
|
|
|
|
|
- // Click on username not found hint
|
|
|
|
|
- cy.get('.CodeMirror-hints > li').first().click();
|
|
|
|
|
- cy.get('#comments-container').within(() => { cy.screenshot(`${ssPrefix}7-mention-no-username-mentioned`) });
|
|
|
|
|
- });
|
|
|
|
|
|
|
+ // cy.appendTextToEditorUntilContains(username);
|
|
|
|
|
+
|
|
|
|
|
+ // cy.get('#comments-container').within(() => { cy.screenshot(`${ssPrefix}6-mention-username-not-found`) });
|
|
|
|
|
+ // // Click on username not found hint
|
|
|
|
|
+ // cy.get('.CodeMirror-hints > li').first().click();
|
|
|
|
|
+ // cy.get('#comments-container').within(() => { cy.screenshot(`${ssPrefix}7-mention-no-username-mentioned`) });
|
|
|
|
|
+ // });
|
|
|
|
|
|
|
|
})
|
|
})
|