ziga
ziga
Spoke too soon. Watch seems to be working but when I change test file that should fail I still only see tests passing. I'm using vue 3 with typescript and...
I was now able to reproduce ``` ● Test suite failed to run Server is not running. ``` running `npx vite-jest --watch` inside `vite-jest/examples/vue-app-ts` directory of this repo.
@sodatea Actually I'm still getting this, but only every second re-run. Output this time is: ``` ● Test suite failed to run The server is not running at WebSocketServer. (node_modules/.pnpm/[email protected]/node_modules/ws/lib/websocket-server.js:155:14)...
@Axword To fix it I had to register `ChartTrendline` before the `Tooltip` plugin, ie ```js Chart.register( // ...otherPlugins ChartTrendline, Tooltip, // ...otherPlugins ) ``` order matters here. caveat: we're using...
I know nothing about your codebase, but in ours, changing this order helped, i.e. moving `ChartTrendline` before `Tooltip`. ```diff Chart.register( // ...otherPlugins - Tooltip, - ChartTrendline, + ChartTrendline, + Tooltip,...
I can confirm the error comes from [2.5.3](https://github.com/vueform/multiselect/releases/tag/2.5.3)
It's not beta anymore, but I'll write here anyway because I'm not sure if issue is even `bankai` or `create-choo-app`. So I updated all packages from `create-choo-app` and I'm using...
I'm seeing same thing even after https://github.com/tailwindlabs/tailwindcss/pull/10234 which helped a lot (I'm using version 3.2.6), especially when running vite inside docker container on macOS as a host where I'm getting...
Yes, `edgedb configure set listen_addresses 127.0.0.1 ::1` fixed my problem for the `deno-fresh` example. But running `npx edgeql-js` from `remix` directory still gets me: ``` npx edgeql-js Detected tsconfig.json, generating...
Seems like this has been fixed with https://github.com/vuejs/core/pull/6736 I'll take a look and see if I can confirm.