Skip to content

Commit 0bf7f6c

Browse files
test: trigger workflow
1 parent bca7d53 commit 0bf7f6c

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

.github/workflows/pr-e2e-template.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,23 @@ jobs:
4949
? 'Desktop & Mobile'
5050
: desktopChanged ? 'Desktop' : 'Mobile';
5151
52-
// Build device table with checkboxes and proof link columns per platform
52+
// Build device table with proof link columns per platform
5353
const header = ['Device'];
5454
const separator = ['--------'];
5555
if (desktopChanged) {
56-
header.push('Desktop', 'Proof (Desktop)');
57-
separator.push(':-------:', '---');
56+
header.push('Proof (Desktop)');
57+
separator.push('---');
5858
}
5959
if (mobileChanged) {
60-
header.push('Mobile', 'Proof (Mobile)');
61-
separator.push(':------:', '---');
60+
header.push('Proof (Mobile)');
61+
separator.push('---');
6262
}
6363
6464
const devices = ['nanoS', 'nanoSP', 'nanoX', 'stax', 'flex', 'nanoGen5'];
6565
const rows = devices.map(device => {
6666
const cols = [`| ${device}`];
67-
if (desktopChanged) cols.push('- [ ] Passed', '_paste link_');
68-
if (mobileChanged) cols.push('- [ ] Passed', '_paste link_');
67+
if (desktopChanged) cols.push('_paste link_');
68+
if (mobileChanged) cols.push('_paste link_');
6969
return cols.join(' | ') + ' |';
7070
});
7171
@@ -91,14 +91,12 @@ jobs:
9191
9292
### General
9393
- [ ] Tests pass locally before pushing
94-
- [ ] No \`.only\` or \`.skip\` left in test files (unless intentional and documented)
9594
- [ ] Tests are independent and can run in any order
9695
9796
### Test Quality
9897
- [ ] Page Object Model (POM) pattern is followed for new pages/components
9998
- [ ] Appropriate device tags are added: \`@NanoSP\`, \`@NanoX\`, \`@Stax\`, \`@Flex\`, \`@NanoGen5\`
10099
- [ ] Family tags are added where applicable: \`@family-evm\`, \`@family-bitcoin\`, etc.
101-
- [ ] \`@smoke\` tag added for critical path tests (if applicable)
102100
- [ ] TMS/Xray ticket IDs are linked in test annotations (e.g., \`B2CQA-XXXX\`)
103101
104102
### Device Coverage (Required for new/updated tests)
@@ -108,7 +106,7 @@ jobs:
108106
109107
${deviceTable}
110108
111-
> 💡 Use \`workflow_dispatch\` to trigger the workflow manually on your branch. Set the \`speculos_device\` input to test each device. Replace *paste link* with a link to the workflow run or Allure report for each device.
109+
> 💡 Use \`workflow_dispatch\` to trigger the workflow manually on your branch. Set the \`speculos_device\` input to test each device. Replace *paste link* with a link to the workflow run or Allure report.
112110
`;
113111
114112
// Paginate through all comments to reliably find an existing bot comment

e2e/desktop/tests/specs/earn.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ for (const { account, provider, xrayTicket } of ethEarn) {
7070
},
7171
},
7272
async ({ app }) => {
73-
//test
73+
// test workflow
7474
await addTmsLink(getDescription(test.info().annotations, "TMS").split(", "));
7575

7676
await app.earnDashboard.goAndWaitForEarnToBeReady(() => app.layout.goToEarn());

0 commit comments

Comments
 (0)