Skip to content

Commit 2d4e0a9

Browse files
test: trigger workflow
1 parent bca7d53 commit 2d4e0a9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ jobs:
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
@@ -108,7 +108,7 @@ jobs:
108108
109109
${deviceTable}
110110
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.
111+
> 💡 Use \`workflow_dispatch\` to trigger the workflow manually on your branch. Set the \`speculos_device\` input to test each device. Edit the table: replace 🔲 with ✅ (passed) or ❌ (failed), and replace *paste link* with a link to the workflow run or Allure report.
112112
`;
113113
114114
// 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+
// trigger workflow
7474
await addTmsLink(getDescription(test.info().annotations, "TMS").split(", "));
7575

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

e2e/mobile/specs/market.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe("Market page for user with no device", () => {
3232
$TmsLink("B2CQA-1880");
3333
tags.forEach(tag => $Tag(tag));
3434
it("should find the researched crypto", async () => {
35-
await app.walletTabNavigator.navigateToMarket();
35+
await app.walletTabNavigator.navigateToMarket(); //test
3636
await app.market.searchAsset("eth");
3737
await app.market.expectMarketRowTitle(ticker);
3838
});

0 commit comments

Comments
 (0)