Skip to content

Commit ca064b6

Browse files
committed
test: increase timeout of the tests
1 parent a8477cb commit ca064b6

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

src/brew/__tests__/brew.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { setupBrew } from "../brew"
22
import { testBin } from "../../utils/tests/test-helpers"
33

4-
jest.setTimeout(200000)
4+
jest.setTimeout(300000)
55
describe("setup-brew", () => {
66
it("should setup brew", async () => {
77
if (process.platform !== "darwin") {

src/ccache/__tests__/ccache.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { setupCcache } from "../ccache"
22
import { testBin } from "../../utils/tests/test-helpers"
33
import { InstallationInfo } from "../../utils/setup/setupBin"
44

5-
jest.setTimeout(200000)
5+
jest.setTimeout(300000)
66
describe("setup-ccache", () => {
77
it("should setup ccache", async () => {
88
const installInfo = await setupCcache("", "", process.arch)

src/chocolatey/__tests__/chocolatey.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { InstallationInfo } from "../../utils/setup/setupBin"
22
import { testBin } from "../../utils/tests/test-helpers"
33
import { setupChocolatey } from "../chocolatey"
44

5-
jest.setTimeout(200000)
5+
jest.setTimeout(300000)
66
describe("setup-chocolatey", () => {
77
it("should setup chocolatey", async () => {
88
if (process.platform !== "win32") {

src/cmake/__tests__/cmake.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { setupCmake } from "../cmake"
22
import { setupTmpDir, cleanupTmpDir, testBin } from "../../utils/tests/test-helpers"
33

4-
jest.setTimeout(200000)
4+
jest.setTimeout(300000)
55

66
describe("setup-cmake", () => {
77
let directory: string

src/conan/__tests__/conan.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { setupConan } from "../conan"
22
import { testBin } from "../../utils/tests/test-helpers"
33

4-
jest.setTimeout(200000)
4+
jest.setTimeout(300000)
55
describe("setup-conan", () => {
66
it("should setup conan", async () => {
77
const installInfo = await setupConan("", "", process.arch)

src/cppcheck/__tests__/cppcheck.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { setupCppcheck } from "../cppcheck"
22
import { testBin } from "../../utils/tests/test-helpers"
33

4-
jest.setTimeout(200000)
4+
jest.setTimeout(300000)
55
describe("setup-cppcheck", () => {
66
it("should setup cppcheck", async () => {
77
const installInfo = await setupCppcheck("", "", process.arch)

src/doxygen/__tests__/doxygen.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { setupDoxygen } from "../doxygen"
22
import { testBin } from "../../utils/tests/test-helpers"
33
import { InstallationInfo } from "../../utils/setup/setupBin"
44

5-
jest.setTimeout(200000)
5+
jest.setTimeout(300000)
66
describe("setup-doxygen", () => {
77
it("should setup doxygen", async () => {
88
const installInfo = await setupDoxygen("", "", process.arch)

src/gcc/__tests__/gcc.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { testBin } from "../../utils/tests/test-helpers"
22
import { setupGcc } from "../gcc"
33
import { getVersion } from "../../default_versions"
44

5-
jest.setTimeout(200000)
5+
jest.setTimeout(300000)
66
describe("setup-gcc", () => {
77
it("should setup gcc", async () => {
88
const version = getVersion("gcc", undefined) ?? "11"

src/gcovr/__tests__/gcovr.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { setupGcovr } from "../gcovr"
22
import { testBin } from "../../utils/tests/test-helpers"
33

4-
jest.setTimeout(200000)
4+
jest.setTimeout(300000)
55
describe("setup-gcovr", () => {
66
it("should setup gcovr", async () => {
77
const installInfo = await setupGcovr("", "", process.arch)

src/llvm/__tests__/llvm.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { getSpecificVersionAndUrl } from "../../utils/setup/version"
33
import { isValidUrl } from "../../utils/http/validate_url"
44
import { setupTmpDir, cleanupTmpDir, testBin } from "../../utils/tests/test-helpers"
55

6-
jest.setTimeout(200000)
6+
jest.setTimeout(300000)
77
async function testUrl(version: string) {
88
const [specificVersion, url] = await getSpecificVersionAndUrl(VERSIONS, process.platform, version, getUrl)
99

0 commit comments

Comments
 (0)