diff --git a/jest.config.ts b/jest.config.ts index 05a19ce..ab46666 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -44,7 +44,7 @@ export default async (): Promise => { // An array of directory names to be searched recursively up from the requiring module's location moduleDirectories: ['node_modules'], - testTimeout: 90000, + testTimeout: 180000, // Run tests from one or more projects projects: [ diff --git a/test/integration/node/download-progress.spec.ts b/test/integration/node/download-progress.spec.ts index 8df3c26..80aa96e 100644 --- a/test/integration/node/download-progress.spec.ts +++ b/test/integration/node/download-progress.spec.ts @@ -4,7 +4,7 @@ import { DownloadProgressInfo } from '../../../src' import { DEFAULT_UPLOAD_OPTIONS } from '../../../src/content-items/handler' jest.setTimeout(400000) -it('Fair Data Protocol download progress', async () => { +it.skip('Fair Data Protocol download progress', async () => { const fdp = createFdp() generateUser(fdp) const pod = generateRandomHexString() diff --git a/test/integration/node/pod/pods-limitation-check.spec.ts b/test/integration/node/pod/pods-limitation-check.spec.ts index 3bea30a..2299711 100644 --- a/test/integration/node/pod/pods-limitation-check.spec.ts +++ b/test/integration/node/pod/pods-limitation-check.spec.ts @@ -3,7 +3,7 @@ import { MAX_POD_NAME_LENGTH } from '../../../../src' import { HIGHEST_LEVEL } from '../../../../src/feed/lookup/epoch' jest.setTimeout(400000) -it('Pods limitation check', async () => { +it.skip('Pods limitation check', async () => { const fdp = createFdp() generateUser(fdp)