This commit is contained in:
mozrokafor 2023-03-30 11:38:32 -04:00 коммит произвёл John Whitlock
Родитель d0729e0fd0
Коммит 721597c372
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 082C735D154FB750
2 изменённых файлов: 16 добавлений и 4 удалений

18
.github/workflows/playwright.yml поставляемый
Просмотреть файл

@ -2,7 +2,7 @@ name: Relay e2e Tests
on:
schedule:
- cron: '0 8 * * *'
workflow_dispatch:
inputs:
environment:
@ -39,7 +39,7 @@ jobs:
run: |
commandenv=":${{ inputs.environment != null && inputs.environment || 'stage' }}"
npm run test$commandenv
env:
env:
E2E_TEST_ENV: ${{ inputs.environment != null && inputs.environment || 'stage' }}
E2E_TEST_ACCOUNT_FREE: ${{ secrets.E2E_TEST_ACCOUNT_FREE }}
E2E_TEST_ACCOUNT_PASSWORD: ${{ secrets.E2E_TEST_ACCOUNT_PASSWORD }}
@ -52,4 +52,16 @@ jobs:
with:
name: playwright-report
path: playwright-report/
retention-days: 30
retention-days: 5
- name: Setup gh-pages
uses: action/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: /playwright-report/
- name: Deploy to gh pages
id: relaye2e
uses: actions/deploy-pages@v1

Просмотреть файл

@ -79,7 +79,7 @@ test.describe('Free - General Functionalities, Desktop - Visual Regression', ()
]});
})
test.fixme('Check that the user can delete an mask, and is prompted to confirm before they delete, C1553071', async ({ dashboardPage, page }) => {
test.skip('Check that the user can delete an mask, and is prompted to confirm before they delete, C1553071', async ({ dashboardPage, page }) => {
await expect(async () => {
await dashboardPage.generateMask(1)
expect(await page.locator(dashboardPage.maskCard).count() === 1)