` component, but it doesn’t work.\n",[],365,"icon","Is there a way to change the viewBox attribute of an SVG element?","2025-03-05T19:09:39Z","https://github.com/nuxt/icon/issues/365",0.78171694,{"description":2005,"labels":2006,"number":2016,"owner":1988,"repository":2017,"state":2018,"title":2019,"updated_at":2020,"url":2021,"score":2022},"### Describe the feature\n\nVitest current version is 2.0.3.\r\n@nuxt/test-utils uses Vitest 1.0.6.\r\n\r\nError:\r\n```\r\nnpm ERR! code ERESOLVE\r\nnpm ERR! ERESOLVE could not resolve\r\nnpm ERR! \r\nnpm ERR! While resolving: @nuxt/test-utils@3.13.1\r\nnpm ERR! Found: vitest@2.0.3\r\nnpm ERR! node_modules/vitest\r\nnpm ERR! dev vitest@\"2.0.3\" from the root project\r\nnpm ERR! \r\nnpm ERR! Could not resolve dependency:\r\nnpm ERR! peerOptional vitest@\"^0.34.6 || ^1.0.0\" from @nuxt/test-utils@3.13.1\r\nnpm ERR! node_modules/@nuxt/test-utils\r\nnpm ERR! dev @nuxt/test-utils@\"3.13.1\" from the root project\r\nnpm ERR! @nuxt/test-utils@\">=3.9.0\" from vitest-environment-nuxt@1.0.0\r\nnpm ERR! node_modules/vitest-environment-nuxt\r\nnpm ERR! vitest-environment-nuxt@\"^1.0.0\" from @nuxt/test-utils@3.13.1\r\nnpm ERR! \r\nnpm ERR! Conflicting peer dependency: vitest@1.6.0\r\nnpm ERR! node_modules/vitest\r\nnpm ERR! peerOptional vitest@\"^0.34.6 || ^1.0.0\" from @nuxt/test-utils@3.13.1\r\nnpm ERR! node_modules/@nuxt/test-utils\r\nnpm ERR! dev @nuxt/test-utils@\"3.13.1\" from the root project\r\nnpm ERR! @nuxt/test-utils@\">=3.9.0\" from vitest-environment-nuxt@1.0.0\r\nnpm ERR! node_modules/vitest-environment-nuxt\r\nnpm ERR! vitest-environment-nuxt@\"^1.0.0\" from @nuxt/test-utils@3.13.1\r\nnpm ERR! \r\nnpm ERR! Fix the upstream dependency conflict, or retry\r\nnpm ERR! this command with --force or --legacy-peer-deps\r\nnpm ERR! to accept an incorrect (and potentially broken) dependency resolution.\r\n```\n\n### Additional information\n\n- [ ] Would you be willing to help implement this feature?\n- [ ] Could this feature be implemented as a module?\n\n### Final checks\n\n- [X] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[2007,2010,2013],{"name":2008,"color":2009},"bug","d73a4a",{"name":2011,"color":2012},"vitest-environment","b60205",{"name":2014,"color":2015},"pending triage","5D08F5",892,"test-utils","closed","Error updating to Vitest 2","2024-07-29T08:50:37Z","https://github.com/nuxt/test-utils/issues/892",0.71632767,{"description":2024,"labels":2025,"number":2032,"owner":1988,"repository":2017,"state":2018,"title":2033,"updated_at":2034,"url":2035,"score":2036},"### Describe the feature\n\n## 🚀 Why This Feature?\r\n\r\nNuxt Test Utils provides a variety of tools for conducting End-to-End (E2E) tests with `playwright` and a chosen test runner (currently `vitest` or `jest`). While this is a valuable capability, I believe it could be enhanced further by integrating support for Cucumber.\r\n\r\nHere's the challenge: to initiate a Nuxt server for E2E tests, you typically invoke the `setup()` method from the `test-utils/e2e` Nuxt package, as documented [here](https://nuxt.com/docs/getting-started/testing#setup-1). In essence, this function determines your test runner and associates specific actions with different hooks (e.g., starting the server in `beforeAll`, closing the connection in `afterAll`, etc.).\r\n\r\nThe issue is that using this method outside of a test runner ecosystem (`jest` or `vitest`) is problematic because it cannot locate the necessary hooks to attach the functions to.\r\n\r\n## 🧠 How to Implement It?\r\n\r\nI propose exposing the various functions called by `setup()` and manually invoking them in the framework of your choice, such as Cucumber. For instance, you could do something like this in TypeScript:\r\n\r\n```typescript\r\n// This is the Before hook of Cucumber\r\nBefore(async function(this: CustomWorld): Promise\u003Cvoid> {\r\n // Create a Playwright Test Context with desired options\r\n const context = createTestContext({});\r\n await startServer(context);\r\n \r\n // Use the Playwright API in Cucumber step definitions\r\n this.page = await createPage(\"/\");\r\n});\r\n```\r\n\r\nI'm unsure if this is already achievable. Regardless, I haven't come across any relevant implementations of `nuxt3` + `playwright` + `cucumber`.\r\n\r\n## 🔍 Reproduction Repository\r\n\r\nYou can test my setup in my [repository](https://github.com/antoinezanardi/werewolves-assistant-web-next/tree/develop) by running the `npm run test:cucumber` command.\r\n\r\nI'd be delighted to assist in building this feature. If it's already possible or implemented differently, I'd appreciate the opportunity to document it in the Nuxt documentation.\n\n### Additional information\n\n- [x] Would you be willing to help implement this feature?\n- [ ] Could this feature be implemented as a module?\n\n### Final checks\n\n- [X] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[2026,2029],{"name":2027,"color":2028},"documentation","0075ca",{"name":2030,"color":2031},"enhancement","a2eeef",697,"Support E2E tests within Cucumber ecosystem","2024-03-29T09:57:55Z","https://github.com/nuxt/test-utils/issues/697",0.7461729,{"description":2038,"labels":2039,"number":2042,"owner":1988,"repository":1989,"state":2018,"title":2043,"updated_at":2044,"url":2045,"score":2046},"https://nuxt.com/docs/community/changelog",[2040],{"name":2030,"color":2041},"1ad6ff",1218,"add release notes and changelog","2023-10-10T14:45:09Z","https://github.com/nuxt/nuxt.com/issues/1218",0.76539105,{"description":2048,"labels":2049,"number":2053,"owner":1988,"repository":2054,"state":2018,"title":2055,"updated_at":2056,"url":2057,"score":2058},"### Environment\n\n- Operating System: Linux\r\n- Node Version: v18.20.3\r\n- Nuxt Version: 3.13.2\r\n- CLI Version: 3.14.0\r\n- Nitro Version: 2.9.7\r\n- Package Manager: pnpm@8.15.6\r\n- Builder: -\r\n- User Config: -\r\n- Runtime Modules: -\r\n- Build Modules: -\n\n### Version\n\nv2.18.6\n\n### Reproduction\n\nhttps://stackblitz.com/~/github.com/Yves852/nuxt-ui-commandpalette-hover\n\n### Description\n\nHovering the list of element with the mouse don't show visual effects contrary to [doc example](https://ui.nuxt.com/components/command-palette#usage), It's updated with up/down keys.\r\n\r\nCould be related to [1708](https://github.com/nuxt/ui/issues/1708)\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2050],{"name":2051,"color":2052},"duplicate","cfd3d7",2284,"ui","CommandPalette: hover not working","2024-11-13T09:11:36Z","https://github.com/nuxt/ui/issues/2284",0.77730256,{"labels":2060,"number":2066,"owner":1988,"repository":1988,"state":2018,"title":2067,"updated_at":2068,"url":2069,"score":2070},[2061,2063],{"name":2030,"color":2062},"8DEF37",{"name":2064,"color":2065},"2.x","d4c5f9",10075,"Missing upgrade guide from 1.x to 2.x","2023-01-22T15:52:51Z","https://github.com/nuxt/nuxt/issues/10075",0.7822116,{"description":2072,"labels":2073,"number":2084,"owner":1988,"repository":1988,"state":2018,"title":2085,"updated_at":2086,"url":2087,"score":2088},"### Describe the feature\n\nI've not managed to find an equivalent for https://nuxtjs.org/docs/features/live-preview/ in the Nuxt3 codebase and am wondering if there's similar functionality/plans to add them/a successor (potentially in a module)?\n\n### Additional information\n\n- [ ] Would you be willing to help implement this feature?\n- [X] Could this feature be implemented as a module?\n\n### Final checks\n\n- [X] Read the [contribution guide](https://v3.nuxtjs.org/community/contribution).\n- [X] Check existing [discussions](https://github.com/nuxt/framework/discussions) and [issues](https://github.com/nuxt/framework/issues).",[2074,2075,2078,2081],{"name":2030,"color":2062},{"name":2076,"color":2077},"good first issue","fbca04",{"name":2079,"color":2080},"3.x","29bc7f",{"name":2082,"color":2083},"🍰 p2-nice-to-have","0E8A16",15639,"Document successor of preview mode","2024-03-09T07:29:27Z","https://github.com/nuxt/nuxt/issues/15639",0.78256834,{"labels":2090,"number":2094,"owner":1988,"repository":1988,"state":2018,"title":2095,"updated_at":2096,"url":2097,"score":2098},[2091,2093],{"name":2014,"color":2092},"E99695",{"name":2064,"color":2065},7266,"Nuxt injecting different native instances?","2023-01-22T15:34:50Z","https://github.com/nuxt/nuxt/issues/7266",0.7892894,{"description":2100,"labels":2101,"number":2102,"owner":1988,"repository":1999,"state":2018,"title":2103,"updated_at":2104,"url":2105,"score":2106},"Hi there! I started a Nuxt project with Nuxt icon module, but moved to using Iconify package for a couple of reasons, and I thought I'd better ask just in case there's a solution to both that allows me to get back to Nuxt icon, which seemed a bit lighter: \n\n1 - I have a component that changes the icon depending on a \"status\" ref variable. With iconify, the transition is immediate, but with Nuxt icon, there's no icon for half a second (a solid color square appears instead), and sometimes the initial icon is not loaded at all, and I have to click it to change the status and finally load it (it doesn't happen with iconify). If you need a build to see the issue, please let me know.\n\n2 - With iconify, I can use tailwind bg-* classes in Icon component for changing the icon background, and text-* for icon color. But with Nuxt icon, bg-* and text-* both change the icon color, so I have to wrap the Icon component in a div in order to apply a background color. Is there any other way to change the background color with Nuxt icon? Or, are there plans to add support for background color? \n\nThanks a lot beforehand :)",[],254,"A couple of doubts about Nuxt icon","2024-09-16T21:51:02Z","https://github.com/nuxt/icon/issues/254",0.7940657,["Reactive",2108],{},["Set"],["ShallowReactive",2111],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"Bl9hbR2dxGJ4Xo3L65AV9dqH3Q2nrkLRT1uXxxXRC4g":-1},"/nuxt/nuxt.com/706"]