@@ -216,7 +216,7 @@ suite("DiagnosticsManager Test Suite", async function () {
216216 // after first build and can cause intermittent
217217 // failure if `swiftc` diagnostic is fixed
218218 suiteSetup ( async function ( ) {
219- this . timeout ( 2 * 60 * 1000 ) ; // Allow 2 minutes to build
219+ this . timeout ( 3 * 60 * 1000 ) ; // Allow 3 minutes to build
220220 const task = createBuildAllTask ( folderContext ) ;
221221 // This return exit code and output for the task but we will omit it here
222222 // because the failures are expected and we just want the task to build
@@ -1062,7 +1062,7 @@ suite("DiagnosticsManager Test Suite", async function () {
10621062
10631063 assertHasDiagnostic ( mainUri , expectedDiagnostic1 ) ;
10641064 assertHasDiagnostic ( mainUri , expectedDiagnostic2 ) ;
1065- } ) . timeout ( 2 * 60 * 1000 ) ; // Allow 2 minutes to build
1065+ } ) . timeout ( 3 * 60 * 1000 ) ; // Allow 3 minutes to build
10661066
10671067 test ( "Provides clang diagnostics" , async ( ) => {
10681068 // Build for indexing
@@ -1099,6 +1099,6 @@ suite("DiagnosticsManager Test Suite", async function () {
10991099
11001100 assertHasDiagnostic ( cUri , expectedDiagnostic1 ) ;
11011101 assertHasDiagnostic ( cUri , expectedDiagnostic2 ) ;
1102- } ) . timeout ( 2 * 60 * 1000 ) ; // Allow 2 minutes to build
1102+ } ) . timeout ( 3 * 60 * 1000 ) ; // Allow 3 minutes to build
11031103 } ) ;
11041104} ) ;
0 commit comments