Skip to content
Snippets Groups Projects
Unverified Commit b6664f1d authored by Michael Kriese's avatar Michael Kriese Committed by GitHub
Browse files

test: extend jest timeouts (#9062)

parent 537521da
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,9 @@ const Git: typeof _simpleGit = jest.requireActual('simple-git'); ...@@ -11,6 +11,9 @@ const Git: typeof _simpleGit = jest.requireActual('simple-git');
const localDir = `${__dirname}/__fixtures__`; const localDir = `${__dirname}/__fixtures__`;
describe('lib/manager/gitsubmodules/extract', () => { describe('lib/manager/gitsubmodules/extract', () => {
// flaky ci tests
jest.setTimeout(10 * 1000);
beforeAll(() => { beforeAll(() => {
simpleGit.mockImplementation((basePath: string) => { simpleGit.mockImplementation((basePath: string) => {
const git = Git(basePath); const git = Git(basePath);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment