Skip to content

Commit

Permalink
Increase Antora tests timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ggrossetie committed Oct 11, 2023
1 parent 4c0700e commit c444e17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/antora/test.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* global describe it beforeEach before */
/* global describe it before */
const fs = require('fs')
const cheerio = require('cheerio')
const chai = require('chai')
Expand All @@ -9,7 +9,7 @@ chai.use(require('dirty-chai'))
const generateSite = require('@antora/site-generator-default')

describe('Antora integration (local)', function () {
this.timeout(50000)
this.timeout(90000)
before(async () => {
fs.rmSync(`${__dirname}/public`, { recursive: true, force: true })
await generateSite([`--playbook=${__dirname}/site.yml`])
Expand All @@ -35,7 +35,7 @@ describe('Antora integration (local)', function () {
})

describe('Antora integration (remote)', function () {
this.timeout(50000)
this.timeout(90000)
before(async () => {
fs.rmSync(`${__dirname}/public`, { recursive: true, force: true })
await generateSite([`--playbook=${__dirname}/site-remote.yml`])
Expand Down

0 comments on commit c444e17

Please sign in to comment.