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 = {
|
const tc = {
|
||||||
name: `CashRepairInShopAfterPay`,
|
name: `CashRepairInShopAfterPay`,
|
||||||
tags: ['@E2E','@CashRepairInShopAfterPay', '@test_report', '@CASH'],
|
tags: ['@E2E','@CashRepairInShopAfterPay', '@test_report', '@CASH', '@CASH-836'],
|
||||||
testData: cashRepairInShopAfterPayData
|
testData: cashRepairInShopAfterPayData
|
||||||
};
|
};
|
||||||
cashRepairInShopAfterPayTests.push(tc);
|
cashRepairInShopAfterPayTests.push(tc);
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,7 @@ const CashReplaceSplitWindshieldTests: ITestCase[] = [];
|
||||||
|
|
||||||
const tc = {
|
const tc = {
|
||||||
name: `CashReplaceSplitWindshield`,
|
name: `CashReplaceSplitWindshield`,
|
||||||
tags: ['@E2E','@CashReplaceSplitWindshield', '@test_report', '@CASH'],
|
tags: ['@E2E','@CashReplaceSplitWindshield', '@test_report', '@CASH', '@CASH-836'],
|
||||||
testData: CashReplaceSplitWindshieldData
|
testData: CashReplaceSplitWindshieldData
|
||||||
};
|
};
|
||||||
CashReplaceSplitWindshieldTests.push(tc);
|
CashReplaceSplitWindshieldTests.push(tc);
|
||||||
|
|
|
||||||
|
|
@ -140,13 +140,6 @@ jobs:
|
||||||
fi
|
fi
|
||||||
echo "Filter value: $FILTER"
|
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 }}
|
TARGET_URL=${{ parameters.targetUrl }}
|
||||||
echo "BASE_URL value: $BASE_URL"
|
echo "BASE_URL value: $BASE_URL"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue