Skip to content

Commit

Permalink
Add timeouts to hub tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Aug 4, 2024
1 parent f7a96f7 commit 23db1f6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/testHubs.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ suite("hub.txt", function () {

test("genome config", async function () {

this.timeout(20000)

const hub = await Hub.loadHub(hubURL)
assert.ok(hub.hubStanza)
Expand All @@ -29,6 +30,9 @@ suite("hub.txt", function () {
})

test("track configs", async function() {

this.timeout(20000)

const hub = await Hub.loadHub(hubURL)
const groupedTrackConfigurations = hub.getGroupedTrackConfigurations();
assert.equal(5, groupedTrackConfigurations.length);
Expand Down

0 comments on commit 23db1f6

Please sign in to comment.