Skip to content

Commit

Permalink
skip 削除
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed Feb 24, 2022
1 parent 0352e99 commit 6c01ec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zap/selenium/ci/TypeScript/test/admin/change_password.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ test.describe.serial('パスワード変更のテストをします', () => {

test.describe('テストを実行します[GET] @attack', () => {
let scanId: number;
test.skip('アクティブスキャンを実行します', async () => {
test('アクティブスキャンを実行します', async () => {
scanId = await zapClient.activeScanAsUser(url, 2, 55, false, null, 'GET');
await intervalRepeater(async () => await zapClient.getActiveScanStatus(scanId), 5000, page);
});

test.skip('結果を確認します', async () => {
test('結果を確認します', async () => {
await zapClient.getAlerts(url, 0, 1, Risk.High)
.then(alerts => expect(alerts).toEqual([]));
});
Expand Down

0 comments on commit 6c01ec3

Please sign in to comment.