From d3c5817a456d042548f3927ba893f51faf88eefd Mon Sep 17 00:00:00 2001 From: microwavedcola1 Date: Wed, 22 Feb 2023 11:19:03 +0100 Subject: [PATCH] Fix mocha runner Signed-off-by: microwavedcola1 --- .mocharc.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .mocharc.json diff --git a/.mocharc.json b/.mocharc.json new file mode 100644 index 000000000..3758cbd57 --- /dev/null +++ b/.mocharc.json @@ -0,0 +1,8 @@ +{ + "extensions": ["ts"], + "spec": ["ts/client/src/**/*.spec.*"], + "node-option": [ + "experimental-specifier-resolution=node", + "loader=ts-node/esm" + ] +}