From 6765b50e4a470ec85a07aeff2a593a0f1b7891d3 Mon Sep 17 00:00:00 2001 From: Tuan Tuan LE Date: Thu, 3 Sep 2020 14:37:49 +0700 Subject: [PATCH] #3 fix unit-test Reference this issue: https://github.com/facebook/jest/issues/6229 --- jest.config.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 jest.config.js diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..95c12aa --- /dev/null +++ b/jest.config.js @@ -0,0 +1,5 @@ +module.exports = { + transformIgnorePatterns: [ + '/node_modules/(?!esn-api-client).+\\.js$' + ] +};