Skip to content

Commit 0119d66

Browse files
authored
Increase timeout for flaky test (#3750)
1 parent a8ff3db commit 0119d66

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

repo-scripts/size-analysis/test/size-analysis.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,8 @@ describe('extractDeclarations on .d.ts file', () => {
199199
describe('extractDeclarations on js bundle file', () => {
200200
let subsetExportsBundleFile: string;
201201
let extractedDeclarations: MemberList;
202-
before(() => {
202+
before(function () {
203+
this.timeout(120000);
203204
const start = Date.now();
204205
const testModuleDtsFile: string = getTestModuleDtsFilePath();
205206
const map: Map<string, string> = buildMap(

0 commit comments

Comments
 (0)