chore: revert the e2e

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-10-27 15:14:37 +02:00
parent ef9dd217b6
commit 139f4b1f39
+2 -7
View File
@@ -350,7 +350,6 @@ async function testAppServe(pluginName: string, appDir: string) {
GITHUB_TOKEN: 'abc',
},
});
Browser.localhost('localhost', 3000);
let successful = false;
@@ -379,9 +378,7 @@ async function testAppServe(pluginName: string, appDir: string) {
}
} finally {
// Kill entire process group, otherwise we'll end up with hanging serve processes
if (startApp.pid) {
killTree(startApp.pid);
}
killTree(startApp.pid);
}
try {
@@ -460,9 +457,7 @@ async function testBackendStart(appDir: string, isPostgres: boolean) {
} finally {
print('Stopping the child process');
// Kill entire process group, otherwise we'll end up with hanging serve processes
if (child.pid) {
killTree(child.pid);
}
killTree(child.pid);
}
try {