Adds CASH-836 tag to specific tests
Adds the `@CASH-836` tag to `CashRepairInShopAfterPay` and `CashReplaceSplitWindshield` tests. This addition presumably links these tests to a specific issue or requirement tracked under CASH-836. Removes unused variables from playwright-test.yml.
This commit is contained in:
parent
09ee59a583
commit
17b917cac6
3 changed files with 2 additions and 9 deletions
|
|
@ -42,7 +42,7 @@ const cashRepairInShopAfterPayTests: ITestCase[] = [];
|
|||
|
||||
const tc = {
|
||||
name: `CashRepairInShopAfterPay`,
|
||||
tags: ['@E2E','@CashRepairInShopAfterPay', '@test_report', '@CASH'],
|
||||
tags: ['@E2E','@CashRepairInShopAfterPay', '@test_report', '@CASH', '@CASH-836'],
|
||||
testData: cashRepairInShopAfterPayData
|
||||
};
|
||||
cashRepairInShopAfterPayTests.push(tc);
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ const CashReplaceSplitWindshieldTests: ITestCase[] = [];
|
|||
|
||||
const tc = {
|
||||
name: `CashReplaceSplitWindshield`,
|
||||
tags: ['@E2E','@CashReplaceSplitWindshield', '@test_report', '@CASH'],
|
||||
tags: ['@E2E','@CashReplaceSplitWindshield', '@test_report', '@CASH', '@CASH-836'],
|
||||
testData: CashReplaceSplitWindshieldData
|
||||
};
|
||||
CashReplaceSplitWindshieldTests.push(tc);
|
||||
|
|
|
|||
|
|
@ -140,13 +140,6 @@ jobs:
|
|||
fi
|
||||
echo "Filter value: $FILTER"
|
||||
|
||||
PLAYWRIGHT_PATH="${{ parameters.playwrightTestsPath }}"
|
||||
TARGET_URL="$TARGET_URL"
|
||||
SHARD_NUMBER=$(shardNumber)
|
||||
TOTAL_SHARDS=$(totalShards)
|
||||
|
||||
echo "npx --prefix $PLAYWRIGHT_PATH wait-on $TARGET_URL && npx --prefix $PLAYWRIGHT_PATH playwright test $PLAYWRIGHT_PATH --shard=$SHARD_NUMBER/$TOTAL_SHARDS --reporter=list,blob $FILTER"
|
||||
|
||||
TARGET_URL=${{ parameters.targetUrl }}
|
||||
echo "BASE_URL value: $BASE_URL"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue