Skip to content

Commit

Permalink
real negative test
Browse files Browse the repository at this point in the history
  • Loading branch information
silkroadnomad committed Dec 4, 2024
1 parent f191386 commit b7ee4f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
branches: [ main, master ]
jobs:
test:
WalletGenerationTests:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion tests/playground.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ 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('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
expect(mnemonic).toBe('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
});

test('Basic Address Generation Test', async ({ page, browser }) => {
Expand Down

0 comments on commit b7ee4f8

Please sign in to comment.