Skip to content

Commit

Permalink
fix(frontend): fix e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo authored and na2na-p committed May 10, 2023
1 parent cff78a4 commit 916d67e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions cypress/e2e/basic.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,30 @@ describe('After user signed in', () => {

cy.get('[data-cy-user-setup-continue]').click();
});
});

describe('After user setup', () => {
beforeEach(() => {
cy.resetState();

// インスタンス初期セットアップ
cy.registerUser('admin', 'pass', true);

// ユーザー作成
cy.registerUser('alice', 'alice1234');

cy.login('alice', 'alice1234');

// アカウント初期設定ウィザード
cy.get('[data-cy-user-setup] [data-cy-modal-window-close]').click();
cy.get('[data-cy-modal-dialog-ok]').click();
});

afterEach(() => {
// テスト終了直前にページ遷移するようなテストケース(例えばアカウント作成)だと、たぶんCypressのバグでブラウザの内容が次のテストケースに引き継がれてしまう(例えばアカウントが作成し終わった段階からテストが始まる)。
// waitを入れることでそれを防止できる
cy.wait(1000);
});

it('note', () => {
cy.get('[data-cy-open-post-form]').should('be.visible');
Expand Down

0 comments on commit 916d67e

Please sign in to comment.