diff --git a/.github/workflows/monitoring-claim-orders .yml b/.github/workflows/monitoring-claim-orders .yml index ac1b71b6ea..9eacbb8e8c 100644 --- a/.github/workflows/monitoring-claim-orders .yml +++ b/.github/workflows/monitoring-claim-orders .yml @@ -3,7 +3,7 @@ name: Technical job to claim orders created by monitoring on: workflow_dispatch: schedule: - - cron: "*/45 * * * *" + - cron: "19 * * * *" jobs: fe-claim1-tests: @@ -40,40 +40,6 @@ jobs: with: name: claim1-test-results path: packages/web/playwright-report - - name: Send Slack alert if test fails - id: slack - if: failure() - uses: slackapi/slack-github-action@v1.26.0 - with: - payload: | - { - "blocks": [ - { - "type": "header", - "text": { - "type": "plain_text", - "text": "🚨 Claim Tests Failure Alert 🚨" - } - }, - { - "type": "section", - "text": { - "type": "mrkdwn", - "text": "*Production App URL:* https://app.osmosis.zone" - } - }, - { - "type": "section", - "text": { - "type": "mrkdwn", - "text": "Click here to view the run: <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|GitHub Actions Run>" - } - } - ] - } - env: - SLACK_WEBHOOK_URL: ${{ secrets.SERVER_E2E_TESTS_SLACK_WEBHOOK_URL }} - SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK fe-claim2-tests: timeout-minutes: 10 @@ -109,40 +75,6 @@ jobs: with: name: claim2-test-results path: packages/web/playwright-report - - name: Send Slack alert if test fails - id: slack - if: failure() - uses: slackapi/slack-github-action@v1.26.0 - with: - payload: | - { - "blocks": [ - { - "type": "header", - "text": { - "type": "plain_text", - "text": "🚨 Claim Tests Failure Alert 🚨" - } - }, - { - "type": "section", - "text": { - "type": "mrkdwn", - "text": "*Production App URL:* https://app.osmosis.zone" - } - }, - { - "type": "section", - "text": { - "type": "mrkdwn", - "text": "Click here to view the run: <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|GitHub Actions Run>" - } - } - ] - } - env: - SLACK_WEBHOOK_URL: ${{ secrets.SERVER_E2E_TESTS_SLACK_WEBHOOK_URL }} - SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK delete-deployments: runs-on: ubuntu-latest diff --git a/packages/web/e2e/tests/select.spec.ts b/packages/web/e2e/tests/select.spec.ts index 0293fb3f0c..550fb1d86a 100644 --- a/packages/web/e2e/tests/select.spec.ts +++ b/packages/web/e2e/tests/select.spec.ts @@ -1,5 +1,10 @@ /* eslint-disable import/no-extraneous-dependencies */ -import { BrowserContext, chromium, Page, test } from "@playwright/test"; +import { + type BrowserContext, + chromium, + type Page, + test, +} from "@playwright/test"; import { addCoverageReport, attachCoverageReport } from "monocart-reporter"; import { TradePage } from "~/e2e/pages/trade-page";