From a05e37dd5d7dd1d52ccd1bbcdd66236df1494dd9 Mon Sep 17 00:00:00 2001 From: Georgi Parlakov Date: Sun, 29 Sep 2024 17:29:52 +0300 Subject: [PATCH] fix: test only title of the list as no camp-applications yet --- README.md | 2 ++ .../campaign-application/campaign-application-create.spec.ts | 2 +- e2e/utils/fixtures.ts | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7d156180b..3a9914eca 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,9 @@ Watch releases of this repository to be notified about future updates: ## Contributors ✨ + [![All Contributors](https://img.shields.io/badge/all_contributors-83-orange.svg?style=flat-square)](#contributors-) + Please check [contributors guide](https://github.com/podkrepi-bg/frontend/blob/master/CONTRIBUTING.md) for: diff --git a/e2e/tests/regression/campaign-application/campaign-application-create.spec.ts b/e2e/tests/regression/campaign-application/campaign-application-create.spec.ts index b75ffa4e9..df61cb4b4 100644 --- a/e2e/tests/regression/campaign-application/campaign-application-create.spec.ts +++ b/e2e/tests/regression/campaign-application/campaign-application-create.spec.ts @@ -5,6 +5,6 @@ test.describe('Create campaign application', () => { await page.goto(`${baseURL}/admin/campaign-applications`) await expect(page.getByRole('heading')).toHaveText('Кандидат Кампании') - await expect(page.getByRole('row')).toHaveCount(6); // title plus 5 rows + // await expect(page.getByRole('row')).toHaveCount(1); // just title b/c no campaign applications yet }) }) diff --git a/e2e/utils/fixtures.ts b/e2e/utils/fixtures.ts index 18abae170..4b08001f4 100644 --- a/e2e/utils/fixtures.ts +++ b/e2e/utils/fixtures.ts @@ -1,8 +1,8 @@ import { test as base } from '@playwright/test' import dotenv from 'dotenv' -dotenv.config({path: '../.env.local'}) -dotenv.config({path: '../.env'}) +dotenv.config({ path: '../.env.local' }) +dotenv.config({ path: '../.env' }) const email = process.env.PODKREPI_EMAIL! const password = process.env.PODKREPI_PASSWORD!