fix(core): update

This commit is contained in:
Philipp Kunz 2020-10-20 20:28:33 +00:00
parent e146b7741d
commit 99efc2d5fe

View File

@ -8,7 +8,7 @@ export {
let testServer: AgTestServer; let testServer: AgTestServer;
let handler: AAgHandler<any>; let handler: AAgHandler<any>;
export const createTestServer = async (handlerArg: { new(envHandler: plugins.agSdk.AgEnvironment): plugins.agSdk.AAgHandler<any> }) => { export const createTestServer = async (handlerArg: { new(envManagerArg: plugins.agSdk.AgEnvironment): plugins.agSdk.AAgHandler<any> }) => {
class AgEnvironement extends plugins.agSdk.AgEnvironment { class AgEnvironement extends plugins.agSdk.AgEnvironment {
public qenv = new plugins.qenv.Qenv('./', './.nogit'); public qenv = new plugins.qenv.Qenv('./', './.nogit');
public async getEnvVar(nameArg: string) { public async getEnvVar(nameArg: string) {
@ -63,6 +63,11 @@ export const testFire = <
throwErrorBool = true; throwErrorBool = true;
} }
if (throwErrorBool) { if (throwErrorBool) {
console.log('Result: response did not comply');
console.log('-> expected:');
console.log(expectedResponseArg);
console.log('-> but actually received:');
console.log(actualResponse);
throw new Error('response did not comply'); throw new Error('response did not comply');
} }
return actualResponse; return actualResponse;