File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -989,6 +989,10 @@ class TestRunner {
989
989
// Deploy functions
990
990
await this . deployFunctions ( ) ;
991
991
992
+ // Wait for functions to become fully available
993
+ this . log ( "⏳ Waiting 20 seconds for functions to become fully available..." , "info" ) ;
994
+ await new Promise ( resolve => setTimeout ( resolve , 20000 ) ) ;
995
+
992
996
// Run tests
993
997
await this . runTests ( [ suiteName ] ) ;
994
998
@@ -1094,6 +1098,10 @@ class TestRunner {
1094
1098
// Deploy functions
1095
1099
await this . deployFunctions ( ) ;
1096
1100
1101
+ // Wait for functions to become fully available
1102
+ this . log ( "⏳ Waiting 20 seconds for functions to become fully available..." , "info" ) ;
1103
+ await new Promise ( resolve => setTimeout ( resolve , 20000 ) ) ;
1104
+
1097
1105
// Run tests for this project's suites
1098
1106
await this . runTests ( projectSuites ) ;
1099
1107
@@ -1115,6 +1123,10 @@ class TestRunner {
1115
1123
// Deploy functions
1116
1124
await this . deployFunctions ( ) ;
1117
1125
1126
+ // Wait for functions to become fully available
1127
+ this . log ( "⏳ Waiting 20 seconds for functions to become fully available..." , "info" ) ;
1128
+ await new Promise ( resolve => setTimeout ( resolve , 20000 ) ) ;
1129
+
1118
1130
// Run tests
1119
1131
await this . runTests ( suiteNames ) ;
1120
1132
You can’t perform that action at this time.
0 commit comments