From 1e2dbadf097bddd87f8291e0e94221d5d57f9e1b 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$' + ] +};