summaryrefslogtreecommitdiff
path: root/cypress
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-10-28 22:00:38 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-10-28 22:00:38 +0900
commitfa0814f9393b3a15869df8d780e91bc6f03d112e (patch)
treee01309e6ccaba559632896192d5dc0924b27f609 /cypress
parentfix e2e test (diff)
downloadsharkey-fa0814f9393b3a15869df8d780e91bc6f03d112e.tar.gz
sharkey-fa0814f9393b3a15869df8d780e91bc6f03d112e.tar.bz2
sharkey-fa0814f9393b3a15869df8d780e91bc6f03d112e.zip
fix e2e test
Diffstat (limited to 'cypress')
-rw-r--r--cypress/integration/basic.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/cypress/integration/basic.js b/cypress/integration/basic.js
index 182f70ff68..a754f41b98 100644
--- a/cypress/integration/basic.js
+++ b/cypress/integration/basic.js
@@ -128,7 +128,8 @@ describe('After user signup', () => {
cy.get('[data-cy-signin-username] input').type('alice');
cy.get('[data-cy-signin-password] input').type('alice1234{enter}');
- cy.contains('アカウントが凍結されています');
+ // TODO: cypressにブラウザの言語指定できる機能が実装され次第英語のみテストするようにする
+ cy.contains(/アカウントが凍結されています|This account has been suspended due to/gi);
});
});