diff options
| author | Masaya Suzuki <15100604+massongit@users.noreply.github.com> | 2023-01-14 19:25:20 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-14 19:25:20 +0900 |
| commit | 170cfc6a0e20d3c66221bd9ca2d8c1551a8060a4 (patch) | |
| tree | 283fb473849fb9f402b09525cea48fe3b8a43e90 /cypress | |
| parent | 13.0.0-rc.4 (diff) | |
| download | sharkey-170cfc6a0e20d3c66221bd9ca2d8c1551a8060a4.tar.gz sharkey-170cfc6a0e20d3c66221bd9ca2d8c1551a8060a4.tar.bz2 sharkey-170cfc6a0e20d3c66221bd9ca2d8c1551a8060a4.zip | |
E2Eテスト "first widget should be removed" 修正 (#9556)
* Fix e2e test "first widget should be removed"
* E2Eテスト用クラス追加
* empty commit
Diffstat (limited to 'cypress')
| -rw-r--r-- | cypress/e2e/widgets.cy.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cypress/e2e/widgets.cy.js b/cypress/e2e/widgets.cy.js index 56ad95ee94..f0ca30b71b 100644 --- a/cypress/e2e/widgets.cy.js +++ b/cypress/e2e/widgets.cy.js @@ -29,8 +29,8 @@ describe('After user signed in', () => { it('first widget should be removed', () => { cy.get('.mk-widget-edit').click(); - cy.get('.customize-container:first-child .remove._button').click(); - cy.get('.customize-container').should('have.length', 2); + cy.get('.data-cy-customize-container:first-child .data-cy-customize-container-remove._button').click(); + cy.get('.data-cy-customize-container').should('have.length', 2); }); function buildWidgetTest(widgetName) { |