Skip to content

Commit

Permalink
Extend timeout for gitData unit test (#4026)
Browse files Browse the repository at this point in the history
  • Loading branch information
twoeths authored May 17, 2022
1 parent 4827b29 commit 6ea10df
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/cli/test/unit/util/gitData.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ import {getGitData} from "../../../src/util";

const WRITE_GIT_DATA_CMD = "npm run write-git-data";

describe("util / gitData", () => {
describe("util / gitData", function () {
// In CI, the below before() function takes time
this.timeout(3000);

before(() => {
const pkgJsonPath = findUp.sync("package.json", {cwd: __dirname});
if (!pkgJsonPath) {
Expand Down

0 comments on commit 6ea10df

Please sign in to comment.