Open naissa12 opened 2 years ago
You're likely importing something from semantic-dom-diff
, which leads to an import of @web/test-runner-commands
, which uses a virtual module called __web-dev-server__web-socket.js
. The file does not exist, so webpack crashes on it. Im not familiar with webpack, but maybe there's a configuration option to externalize or ignore this file.
I solve this issue by adding this to my Webpack configurations:
externals: {
'/__web-dev-server__web-socket.js': 'commonjs __web-dev-server__web-socket.js'
}
I'm running into the following error when running rush test. It seems to be complaining about a node module in the common folder.