From c10e4b2c9a961422b9ed3e0c28f7cb00477adafc Mon Sep 17 00:00:00 2001 From: Jan Kvapil Date: Tue, 14 Nov 2023 22:23:07 +0100 Subject: [PATCH] Omit running very slow tests for now --- meesign_core/test/core_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meesign_core/test/core_test.dart b/meesign_core/test/core_test.dart index 2f084f0..efbc004 100644 --- a/meesign_core/test/core_test.dart +++ b/meesign_core/test/core_test.dart @@ -188,8 +188,8 @@ void main() { test('2-2', () => testSignChallenge(Protocol.ptsrsap1, n: 2, t: 2)); test('2-3', () => testSignChallenge(Protocol.ptsrsap1, n: 3, t: 2)); test('3-3', () => testSignChallenge(Protocol.ptsrsap1, n: 3, t: 3)); - test('15-20', () => testSignChallenge(Protocol.ptsrsap1, n: 20, t: 15), - tags: 'large', timeout: Timeout(Duration(minutes: 10))); + // test('15-20', () => testSignChallenge(Protocol.ptsrsap1, n: 20, t: 15), + // tags: 'large', timeout: Timeout(Duration(minutes: 10))); }); });