From b9c326bebb91dc4da7ae83aabc9f26e6b4aa370b Mon Sep 17 00:00:00 2001 From: neithanmo Date: Mon, 9 Dec 2024 20:53:04 +0100 Subject: [PATCH] Remove concurrent tag in test --- tests_zemu/tests/addr.test.ts | 8 ++++---- tests_zemu/tests/eth_addr.test.ts | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests_zemu/tests/addr.test.ts b/tests_zemu/tests/addr.test.ts index be25338c..854554b8 100644 --- a/tests_zemu/tests/addr.test.ts +++ b/tests_zemu/tests/addr.test.ts @@ -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)) @@ -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)) @@ -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)) @@ -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)) diff --git a/tests_zemu/tests/eth_addr.test.ts b/tests_zemu/tests/eth_addr.test.ts index 7e3aad4e..e6247d7f 100644 --- a/tests_zemu/tests/eth_addr.test.ts +++ b/tests_zemu/tests/eth_addr.test.ts @@ -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)) @@ -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 { @@ -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))