You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ DEBUG=denali* denali test --debug
cli v0.1.4 [local] | denali v0.1.2 [local]
✔ denali-sockets build complete (8.761s)
===> Running denali-sockets tests ...
Debugger listening on ws://127.0.0.1:9229/2711c012-8750-4b47-996f-d96a6c1bc8c5
For help see https://nodejs.org/en/docs/inspector
Debugger attached.
Error: ENOENT: no such file or directory, open '/Users/iradchenko/sandbox/denali-sockets/tmp/-dummy/test/**/*.js'
at Object.fs.openSync (fs.js:646:18)
at Object.fs.readFileSync (fs.js:551:33)
at CachingPrecompiler.precompileFile (/Users/iradchenko/sandbox/denali-sockets/node_modules/ava/lib/caching-precompiler.js:39:34)
at babelConfigHelper.build.then.result (/Users/iradchenko/sandbox/denali-sockets/node_modules/ava/profile.js:88:35)
at <anonymous>
Waiting for the debugger to disconnect...
Looks live ava does something with babel? I am using the TS addon in this addon.
Error:
VM128 index.js:30 Error: ENOENT: no such file or directory, open '/Users/iradchenko/sandbox/denali-sockets/tmp/-dummy/test/**/*.js'
at Object.fs.openSync (fs.js:646:18)
at Object.fs.readFileSync (fs.js:551:33)
at CachingPrecompiler.precompileFile (/Users/iradchenko/sandbox/denali-sockets/node_modules/ava/lib/caching-precompiler.js:39:34)
at babelConfigHelper.build.then.result (/Users/iradchenko/sandbox/denali-sockets/node_modules/ava/profile.js:88:35)
at <anonymous>
It looks like it's trying to open the file literally named tmp/-dummy/test/**/*.js. Sounds like something is passing a glob pattern into something that doesn't support glob patterns directly.
My command output:
Looks live ava does something with babel? I am using the TS addon in this addon.
Error:
Without the
--debug
I get this:(Interesting that eslint runs even though I deleted all the files and deps for it..)
(Ah, it's for the dummy app)
The text was updated successfully, but these errors were encountered: