Sander
Sander
Created a lib for lit/web components. Would be awesome if it could be absorbed by Playwright sooner or later: https://github.com/sand4rt/playwright-ct-web related to: https://github.com/microsoft/playwright/issues/14241
### Page(s) https://playwright.dev/docs/next/test-components#hooks ```ts // playwright/index.ts import { beforeMount, afterMount } from '@playwright/experimental-ct-svelte/hooks'; export type HooksConfig = { context?: string; } beforeMount(async ({ hooksConfig, App }) => { return new...
### Page(s) Page: https://playwright.dev/docs/next/test-components#update I think these topics would be useful to mention: - Determine what to test - Determine what not to test _(implementation details)_ - How to name...
### 🚀 Feature Request The removal of `mount()` inside `test.beforeEach()` and `test.afterAll()` ### Example This pattern: ```js const test = baseTest.extend({ mount({ mount }, use) { return use((props) => mount());...
### 🚀 Feature Request Wondering if you've considered adding [Playwright component testing](https://playwright.dev/docs/test-components) for Blazor: https://learn.microsoft.com/en-us/aspnet/core/blazor/test?view=aspnetcore-8.0#test-components-with-bunit? ### Example ```razor @title @code { [Parameter] public string title { get; set; } =...
VScode: VScode.nvim
allows a custom filter title: ```lua window = { mappings = { ["/"] = { "fuzzy_finder", config = { title = "CUSTOM TITLE" } }, ["o"] = { "show_help", config...
## Description NNP is not enabled when running `:checkhealth` ## Steps to reproduce 1. I did the command `:checkhealth` 2. Then I saw that NNP is not enabled ## Expected...
## Steps to reproduce 1. set `skipEnteringNoNeckPainBuffer = true` 2. open 2 buffers above the main buffer 3. try to navigate to the main buffer It doesn't allow the cursor...
Might be good to add docs on how to use Playwright on Linux distributions as described in?: https://github.com/microsoft/playwright/issues/26482 We have follow these steps: 1. Run the Docker image _(one-time setup)_:...