From 4e968f0e8f501d54c3e6e8fc3695503d4bef09f0 Mon Sep 17 00:00:00 2001 From: Lars Hvam Date: Sat, 22 Jul 2023 19:15:48 +0200 Subject: [PATCH] add run.mjs --- test/run.mjs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/run.mjs diff --git a/test/run.mjs b/test/run.mjs new file mode 100644 index 0000000..01863d4 --- /dev/null +++ b/test/run.mjs @@ -0,0 +1,7 @@ +import {initializeABAP} from "../output/init.mjs"; +import {cl_excel_test} from "../output/cl_excel_test.clas.mjs"; + +await initializeABAP(); + +const test = new cl_excel_test(); +console.dir(await test.run()); \ No newline at end of file