From 1689088fdf45fa4100fac5f291cb7cc852f6d9a7 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Wed, 16 Jul 2025 09:30:17 -0400 Subject: [PATCH] Adds CASH-1187 tag and comment for test. Adds a tag to the heavy truck test case and a comment to App.vue. The tag is for tracking purposes. The comment is for testing. Relates to CASH-1187 --- playwright-tests/tests/alert-validation/alert0001_HeavyTruck.ts | 2 +- src/App.vue | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/playwright-tests/tests/alert-validation/alert0001_HeavyTruck.ts b/playwright-tests/tests/alert-validation/alert0001_HeavyTruck.ts index 3ec0ff648..e81038f44 100644 --- a/playwright-tests/tests/alert-validation/alert0001_HeavyTruck.ts +++ b/playwright-tests/tests/alert-validation/alert0001_HeavyTruck.ts @@ -46,7 +46,7 @@ const heavyTruckTests: ITestCase[] = []; const tc: ITestCase = { name: `alert0001 Heavy Truck`, - tags: ['@Alert', '@HeavyTruck', '@test_report'], + tags: ['@Alert', '@HeavyTruck', '@test_report', '@CASH-1187'], testData: heavyTruckData }; diff --git a/src/App.vue b/src/App.vue index cae31dd24..e6707767b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -61,6 +61,7 @@ window.onerror = (msg, url, line, col, error) => { // If you return true, then error alerts (like in older versions of // Internet Explorer) will be suppressed. + // Additonal comment for test var suppressErrorAlert = true; return suppressErrorAlert; };