Skip to content

Commit

Permalink
negative test
Browse files Browse the repository at this point in the history
  • Loading branch information
silkroadnomad committed Dec 4, 2024
1 parent 692be0e commit f191386
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/playground.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ test.describe('Wallet Generation Tests', () => {
await page.getByRole('button', { name: 'Generate Mnemonic' }).click();
const mnemonic = await page.inputValue('#mnemonicTextarea');
await page.getByLabel('Mnemonic').click();
expect(mnemonic).not.toBe('');
expect(mnemonic).not.toBe('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
});

test.only('Basic Address Generation Test', async ({ page, browser }) => {
test('Basic Address Generation Test', async ({ page, browser }) => {
await page.goto('/');
await page.waitForSelector('text=You are connected to an', { state: 'visible' });
await page.getByRole('button', { name: 'Doichain-Mainnet Open menu' }).click();
Expand Down

0 comments on commit f191386

Please sign in to comment.