Skip to content

Commit

Permalink
Increase timeout
Browse files Browse the repository at this point in the history
Increase timeout

Increase timeout
  • Loading branch information
Ndpnt committed May 1, 2024
1 parent b696f18 commit e9a34b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/declarations/validate/index.mocha.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default async options => {
}

describe('Service declarations validation', async function () {

Check warning on line 43 in scripts/declarations/validate/index.mocha.js

View workflow job for this annotation

GitHub Actions / test (ubuntu-20.04)

Async function has no 'await' expression

Check warning on line 43 in scripts/declarations/validate/index.mocha.js

View workflow job for this annotation

GitHub Actions / test (macos-latest)

Async function has no 'await' expression

Check warning on line 43 in scripts/declarations/validate/index.mocha.js

View workflow job for this annotation

GitHub Actions / test (windows-latest)

Async function has no 'await' expression

Check warning on line 43 in scripts/declarations/validate/index.mocha.js

View workflow job for this annotation

GitHub Actions / test / test (windows-latest)

Async function has no 'await' expression

Check warning on line 43 in scripts/declarations/validate/index.mocha.js

View workflow job for this annotation

GitHub Actions / test / test (ubuntu-20.04)

Async function has no 'await' expression

Check warning on line 43 in scripts/declarations/validate/index.mocha.js

View workflow job for this annotation

GitHub Actions / test / test (macos-latest)

Async function has no 'await' expression
this.timeout(30000);
this.timeout(60000);
this.slow(SLOW_DOCUMENT_THRESHOLD);

servicesToValidate.forEach(serviceId => {
Expand Down
2 changes: 1 addition & 1 deletion src/archivist/fetcher/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const termsHTML = '<!DOCTYPE html><html><head><meta charset="UTF-8"><title>First
const termsWithOtherCharsetHTML = '<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251"><title>TOS на първия доставчик</title></head><body><h1>Условия за ползване</h1><p>Dapibus quis diam sagittis</p></body></html>';

describe('Fetcher', function () {
this.timeout(10000);
this.timeout(60000);

before(launchHeadlessBrowser);

Expand Down

0 comments on commit e9a34b3

Please sign in to comment.