Sander
Sander
@WesleyYue believe the idea is to create a wrapper for `Form.tsx` instead of mounting it directly in the test: ```tsx // Form.tsx type FormProps = { children(props: { value: string...
Library authors can't check if https is set when `config?.server.https` or `config?.preview.https` is not specified right? Why not specify it like?: ```typescript export default defineConfig({ plugins: [basicSsl()], server: { https:...
Yeah it's up to the maintainers. I'm just sharing some thoughts here :) It's not really a new way or do i miss something?: [preview.https](https://vitejs.dev/config/server-options.html#preview-https) type: `boolean | https.ServerOptions`
probably related to: https://github.com/nvim-lualine/lualine.nvim/issues/774
Hi, https://github.com/microsoft/playwright/pull/30269 needs to be resolved first before I could update the lib to the latest version. related to: https://github.com/microsoft/playwright/issues/29544 The `/playwright` folder and `playwright.config.ts` file could be copied from...
Hi, does the slot API cover your case?: https://github.com/sand4rt/playwright-ct-web/blob/master/ct-web-lit/tests/slots.spec.ts ```ts test('render a component as slot', async ({ mount }) => { const component = await mount(Form, { slots: { default:...
@davidkron i'm hesitant to add the `html``;` because it differs from the Playwright API. I do however think that there should be support for directives. Do you have more use...
Thanks for your reply. `directives` and `attributes` don't seem to be supported at the moment: Type | Example -- | -- Child nodes | See [slots.spec.ts](https://github.com/sand4rt/playwright-ct-web/blob/master/ct-web-lit/tests/slots.spec.ts#L5) Attributes | Not sure...
Hi @herrKlein, thanks for reporting. I'll look into it. Does an older version of the lib work?
A temporary workaround is to give the components which are imported in a test file a suffix e.g., change `Button.ts` to `Button.component.ts`. This issue has to be resolved first: https://github.com/microsoft/playwright/issues/29544