Skip to content

Commit

Permalink
Remove concurrent tag in test
Browse files Browse the repository at this point in the history
  • Loading branch information
neithanmo committed Dec 9, 2024
1 parent 254882e commit b9c326b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions tests_zemu/tests/addr.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const EXPECTED_PUBLIC_KEY = '02c6f477ff8e7136de982f898f6bfe93136bbe8dada6c17d0cd
jest.setTimeout(200000)

describe.each(models)('StandardPubKey [%s] - pubkey', function (m) {
test.concurrent('getPubkeyAddr', async function () {
test('getPubkeyAddr', async function () {
const sim = new Zemu(m.path)
try {
await sim.start(defaultOptions(m))
Expand All @@ -49,7 +49,7 @@ describe.each(models)('StandardPubKey [%s] - pubkey', function (m) {
}
})

test.concurrent('ShowAddr', async function () {
test('ShowAddr', async function () {
const sim = new Zemu(m.path)
try {
await sim.start(defaultOptions(m))
Expand All @@ -72,7 +72,7 @@ describe.each(models)('StandardPubKey [%s] - pubkey', function (m) {
}
})

test.concurrent('hrpChainIDAddr', async function () {
test('hrpChainIDAddr', async function () {
const sim = new Zemu(m.path)
try {
await sim.start(defaultOptions(m))
Expand All @@ -92,7 +92,7 @@ describe.each(models)('StandardPubKey [%s] - pubkey', function (m) {
}
})

test.concurrent('show custom hrp & chainID addr', async function () {
test('show custom hrp & chainID addr', async function () {
const sim = new Zemu(m.path)
try {
await sim.start(defaultOptions(m))
Expand Down
6 changes: 3 additions & 3 deletions tests_zemu/tests/eth_addr.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { ETH_DERIVATION, defaultOptions, models } from './common'
import Eth from '@ledgerhq/hw-app-eth'

describe.each(models)('EthereumKeys [%s] - pubkey', function (m) {
test.concurrent('get pubkey and addr %s', async function () {
test('get pubkey and addr %s', async function () {
const sim = new Zemu(m.path)
try {
await sim.start(defaultOptions(m, true))
Expand All @@ -40,7 +40,7 @@ describe.each(models)('EthereumKeys [%s] - pubkey', function (m) {
}
})

test.concurrent('show addr %s', async function () {
test('show addr %s', async function () {
const sim = new Zemu(m.path)

try {
Expand All @@ -61,7 +61,7 @@ describe.each(models)('EthereumKeys [%s] - pubkey', function (m) {
}
})

test.concurrent('get xpub and addr %s', async function () {
test('get xpub and addr %s', async function () {
const sim = new Zemu(m.path)
try {
await sim.start(defaultOptions(m, true))
Expand Down

0 comments on commit b9c326b

Please sign in to comment.