Skip to content

Commit

Permalink
chore: increase timeout for flaky test
Browse files Browse the repository at this point in the history
This test times out a lot in GitHub Actions. Increase the timeout.
  • Loading branch information
Trott committed Sep 26, 2023
1 parent d51853b commit 35425cf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/test-citgm.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { test } from 'tap';
import { Tester } from '../lib/citgm.js';

test('citgm: omg-i-pass', (t) => {
t.setTimeout(30000);
t.plan(2);
const options = {
hmac: null,
Expand All @@ -28,6 +29,7 @@ test('citgm: omg-i-pass', (t) => {
});

test('citgm: omg-i-pass from git url', (t) => {
t.setTimeout(30000);
t.plan(3);

const options = {
Expand Down

0 comments on commit 35425cf

Please sign in to comment.