chore: increase the attempts

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-10-26 12:00:26 +02:00
parent fbedcebe7c
commit 6f923c9e1d
+1 -1
View File
@@ -370,7 +370,7 @@ async function testAppServe(pluginName: string, appDir: string) {
successful = true;
break;
} catch (error) {
if (attempts >= 5) {
if (attempts >= 20) {
throw new Error(`App serve test failed, ${error}`);
}
console.log(`App serve failed, trying again, ${error}`);