@@ -216,7 +216,7 @@ suite("DiagnosticsManager Test Suite", async function () {
216
216
// after first build and can cause intermittent
217
217
// failure if `swiftc` diagnostic is fixed
218
218
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
220
220
const task = createBuildAllTask ( folderContext ) ;
221
221
// This return exit code and output for the task but we will omit it here
222
222
// because the failures are expected and we just want the task to build
@@ -1062,7 +1062,7 @@ suite("DiagnosticsManager Test Suite", async function () {
1062
1062
1063
1063
assertHasDiagnostic ( mainUri , expectedDiagnostic1 ) ;
1064
1064
assertHasDiagnostic ( mainUri , expectedDiagnostic2 ) ;
1065
- } ) . timeout ( 2 * 60 * 1000 ) ; // Allow 2 minutes to build
1065
+ } ) . timeout ( 3 * 60 * 1000 ) ; // Allow 3 minutes to build
1066
1066
1067
1067
test ( "Provides clang diagnostics" , async ( ) => {
1068
1068
// Build for indexing
@@ -1099,6 +1099,6 @@ suite("DiagnosticsManager Test Suite", async function () {
1099
1099
1100
1100
assertHasDiagnostic ( cUri , expectedDiagnostic1 ) ;
1101
1101
assertHasDiagnostic ( cUri , expectedDiagnostic2 ) ;
1102
- } ) . timeout ( 2 * 60 * 1000 ) ; // Allow 2 minutes to build
1102
+ } ) . timeout ( 3 * 60 * 1000 ) ; // Allow 3 minutes to build
1103
1103
} ) ;
1104
1104
} ) ;
0 commit comments