From c0642663b33ab30184c2ba08e785fcd52fcd22f7 Mon Sep 17 00:00:00 2001 From: Caleb Cartwright Date: Wed, 1 Dec 2021 14:51:25 -0600 Subject: [PATCH] tests: increase timeout for tokei gitlab tests (#7275) Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com> --- services/tokei/tokei.tester.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/services/tokei/tokei.tester.js b/services/tokei/tokei.tester.js index 9671c7b588..5c4bb6adbf 100644 --- a/services/tokei/tokei.tester.js +++ b/services/tokei/tokei.tester.js @@ -8,7 +8,8 @@ t.create('GitHub LOC') .expectBadge({ label: 'total lines', message: isMetric }) t.create('GitLab LOC') - .get('/lines/gitlab/tezos/tezos.json') + .get('/lines/gitlab/shields-ops-group/tag-test.json') + .timeout(15000) .expectBadge({ label: 'total lines', message: isMetric }) t.create('GitHub LOC (with .com)') @@ -16,7 +17,8 @@ t.create('GitHub LOC (with .com)') .expectBadge({ label: 'total lines', message: isMetric }) t.create('GitLab LOC (with .com)') - .get('/lines/gitlab.com/tezos/tezos.json') + .get('/lines/gitlab.com/shields-ops-group/tag-test.json') + .timeout(15000) .expectBadge({ label: 'total lines', message: isMetric }) t.create('BitBucket LOC')