Skip to content

Commit

Permalink
refactor(e2e-assets): add logging for wallet mnemonic import in asset…
Browse files Browse the repository at this point in the history
… tests
  • Loading branch information
nelitow committed Dec 12, 2024
1 parent 5c044f5 commit 937d66e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/e2e-assets/playwright/crx/assets.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test.describe('Check assets', () => {
await page.getByText('I Agree to the Terms Of Use').click();
await page.getByRole('button', { name: 'Next: Seed Phrase' }).click();
const mnemonic = process.env.READONLY_TESTNET_ASSETS_VIEW;

console.log(`Importing wallet with mnemonic: ${mnemonic}`);
const words = mnemonic.split(' ');
for (const [index, word] of words.entries()) {
console.log(`Filling word ${index + 1}: ${word}`);
Expand Down

0 comments on commit 937d66e

Please sign in to comment.