From 0e8a3cf3eba9f25a0ab5694bf2ed6a77b19c5f02 Mon Sep 17 00:00:00 2001 From: Niraj Date: Mon, 18 Nov 2024 15:10:16 +0545 Subject: [PATCH] chore: sift mobile accessible test to number 5 --- integration_test/lib/helpers/allure.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration_test/lib/helpers/allure.ts b/integration_test/lib/helpers/allure.ts index 99519b1..5a0f4ec 100644 --- a/integration_test/lib/helpers/allure.ts +++ b/integration_test/lib/helpers/allure.ts @@ -6,8 +6,8 @@ export const setAllureEpic = async (groupName: string): Promise => { const browser = await chromium.launch(); const page = await browser.newPage(); if (isMobile(page)) { - await allure.epic('6. Miscellaneous'); - await allure.story('6A. Should be accessible from mobile'); + await allure.epic('5. Miscellaneous'); + await allure.story('5A. Should be accessible from mobile'); } else { await allure.epic(groupName); }