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
> find . -name '*.test.js' | xargs ./node_modules/.bin/mocha --compilers js:babel-register
module.js:471
throw err;
^
Error: Cannot find module '../util.js'
at Function.Module._resolveFilename (module.js:469:15)
at Function.Module._load (module.js:417:25)
at Module.require (module.js:497:17)
at require (internal/module.js:20:19)
at Object.<anonymous> ...
And is due to the fact that in the buildt build/modules/@shrine/util/util.test.js file has a wrong path for the source: var _util = require('../util.js');.
The text was updated successfully, but these errors were encountered:
Runnig
npm test
results in the following error:And is due to the fact that in the buildt
build/modules/@shrine/util/util.test.js
file has a wrong path for the source:var _util = require('../util.js');
.The text was updated successfully, but these errors were encountered: