mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 23:33:09 +02:00
refactor
This commit is contained in:
parent
91171c559a
commit
186163ec3f
1 changed files with 9 additions and 7 deletions
|
@ -2,8 +2,6 @@ describe('Basic', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
cy.request('POST', '/api/reset-db').as('reset');
|
cy.request('POST', '/api/reset-db').as('reset');
|
||||||
cy.get('@reset').its('status').should('equal', 204);
|
cy.get('@reset').its('status').should('equal', 204);
|
||||||
cy.clearLocalStorage();
|
|
||||||
cy.clearCookies();
|
|
||||||
cy.reload(true);
|
cy.reload(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -121,17 +119,21 @@ describe('Basic', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('suspend', function() {
|
it('suspend', function() {
|
||||||
|
// インスタンス初期セットアップ
|
||||||
cy.request('POST', '/api/admin/accounts/create', {
|
cy.request('POST', '/api/admin/accounts/create', {
|
||||||
username: 'admin',
|
username: 'admin',
|
||||||
password: 'pass',
|
password: 'pass',
|
||||||
}).its('body').as('admin');
|
}).its('body').as('admin');
|
||||||
|
|
||||||
cy.request('POST', '/api/signup', {
|
cy.get('@admin').then(() => {
|
||||||
username: 'alice',
|
// ユーザー作成
|
||||||
password: 'pass',
|
cy.request('POST', '/api/signup', {
|
||||||
}).its('body').as('alice');
|
username: 'alice',
|
||||||
|
password: 'alice1234',
|
||||||
|
}).its('body').as('alice');
|
||||||
|
});
|
||||||
|
|
||||||
cy.then(() => {
|
cy.get('@alice').then(() => {
|
||||||
cy.request('POST', '/api/admin/suspend-user', {
|
cy.request('POST', '/api/admin/suspend-user', {
|
||||||
i: this.admin.token,
|
i: this.admin.token,
|
||||||
userId: this.alice.id,
|
userId: this.alice.id,
|
||||||
|
|
Loading…
Reference in a new issue