Closed IanVS closed 3 years ago
I think this is an issue in vite, and have opened an issue there. https://github.com/vitejs/vite/issues/3641
thanks for letting us know and looking into it. I would reopen this issue to keep track of it ;)
It's possible to use the filterBrowserLogs
option from web-test-runner to ignore these messages.
filterBrowserLogs: ({ args }) => {
if (args[0] === '[vite] connecting...' || args[0] === '[vite] connected.') return false;
return true;
}
Would you like a PR that adds something like this (maybe cleaned up a bit) to the examples?
thanks for following up. merged ;)
I think I've gotten my tests running correctly, but for every test, I see:
Is it possible to silence those? I've tried
logLevel: 'silent'
in my vite.config.ts, with no luck.