Loading jest.config.js +3 −1 Original line number Diff line number Diff line Loading @@ -21,7 +21,9 @@ module.exports = { ], ], testPathIgnorePatterns: ['/node_modules/', '<rootDir>/webviews/', '/dist-/'], transformIgnorePatterns: ['/node_modules/(?!(@anycable/core|p-queue|p-timeout|nanoevents|uuid)/)'], transformIgnorePatterns: [ '/node_modules/(?!(@anycable/core|p-queue|p-timeout|nanoevents|uuid)/)', ], transform: { // why: For some reason, ts-jest was not working for these node_modules // using babel-jest with a target of `node`, we're good to go. Loading scripts/transpile_es_to_cjs_for_integration_tests.mjs +1 −1 Original line number Diff line number Diff line Loading @@ -43,7 +43,7 @@ async function processModule(module) { } async function main() { const modules = ['@anycable/core', 'nanoevents', 'p-queue', 'p-timeout']; const modules = ['@anycable/core', 'nanoevents', 'p-queue', 'p-timeout', 'uuid']; await Promise.all(modules.map(module => processModule(module))); } Loading Loading
jest.config.js +3 −1 Original line number Diff line number Diff line Loading @@ -21,7 +21,9 @@ module.exports = { ], ], testPathIgnorePatterns: ['/node_modules/', '<rootDir>/webviews/', '/dist-/'], transformIgnorePatterns: ['/node_modules/(?!(@anycable/core|p-queue|p-timeout|nanoevents|uuid)/)'], transformIgnorePatterns: [ '/node_modules/(?!(@anycable/core|p-queue|p-timeout|nanoevents|uuid)/)', ], transform: { // why: For some reason, ts-jest was not working for these node_modules // using babel-jest with a target of `node`, we're good to go. Loading
scripts/transpile_es_to_cjs_for_integration_tests.mjs +1 −1 Original line number Diff line number Diff line Loading @@ -43,7 +43,7 @@ async function processModule(module) { } async function main() { const modules = ['@anycable/core', 'nanoevents', 'p-queue', 'p-timeout']; const modules = ['@anycable/core', 'nanoevents', 'p-queue', 'p-timeout', 'uuid']; await Promise.all(modules.map(module => processModule(module))); } Loading