fix(core): update

This commit is contained in:
Philipp Kunz 2020-09-24 00:59:01 +00:00
parent 7a320d27a3
commit 02866cbe8d

View File

@ -15,7 +15,9 @@ export const createTestServer = async (handlerArg: { new(envHandler: plugins.agS
return this.qenv.getEnvVarOnDemand(nameArg);
}
}
handler = new handlerArg(new AgEnvironement())
handler = new handlerArg(new AgEnvironement());
console.log(`now checking requirements for handler with slug ${handler.slug}...`);
await handler.checkRequirements();
testServer = new AgTestServer(handler);
await testServer.start();
return testServer;