https://github.com/sand4rt/playwright-ct-solid
Playwright Solid component testing
https://github.com/sand4rt/playwright-ct-solid
component component-testing playwright solid test testing
Last synced: about 1 month ago
JSON representation
Playwright Solid component testing
- Host: GitHub
- URL: https://github.com/sand4rt/playwright-ct-solid
- Owner: sand4rt
- License: mit
- Created: 2025-06-14T18:16:45.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2026-04-23T14:35:38.000Z (about 1 month ago)
- Last Synced: 2026-04-23T16:33:17.444Z (about 1 month ago)
- Topics: component, component-testing, playwright, solid, test, testing
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@sand4rt/experimental-ct-solid
- Size: 279 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# 🎠Playwright Solid component testing
> **Note**
> The API has been designed to closely resemble Playwright's API wherever applicable. This library is _(without guarantee)_ aimed at facilitating a smooth transition once Playwright offers official support for Solid component testing.
## Capabilities
- Run tests fast, in parallel and optionally over multiple machines with [sharding](https://playwright.dev/docs/test-sharding) or [Azure's Testing Service](https://www.youtube.com/watch?v=FvyYC2pxL_8).
- Run the test headless or headed accross multiple _real_ desktop and/or mobile browser engines.
- Full support for shadow DOM, multiple origins, (i)frames, browser tabs and contexts.
- Minimizes flakyness, due to auto waiting, web first assertions and ensures that every test runs in [full isolation](https://playwright.dev/docs/browser-contexts).
- Advanced [emulation capabilities](https://playwright.dev/docs/emulation) such as modifying screen size, geolocation, color scheme and [the network](https://playwright.dev/docs/mock-browser-apis).
- Interactions with the components are indistinguishable from real user behavior.
- [Visual regression / screenshot testing](https://playwright.dev/docs/api/class-pageassertions#page-assertions-to-have-screenshot-1).
- Zero-configuration TypeScript support.
Along with all these ✨ awesome capabilities ✨ that come with Playwright, you will also get:
- [Watch mode _(BETA)_](https://github.com/microsoft/playwright/issues/21960#issuecomment-1483604692).
- [Visual Studio Code intergration](https://playwright.dev/docs/getting-started-vscode).
- [UI mode](https://playwright.dev/docs/test-ui-mode) for debuging tests with a time travel experience complete with watch mode.
- [Playwright Tracing](https://playwright.dev/docs/trace-viewer-intro) for post-mortem debugging in CI.
- [Playwright Test Code generation](https://playwright.dev/docs/codegen-intro) to record and generate tests suites.
## Usage
Initialize Playwright Solid component testing with PNPM, NPM or Yarn and follow the installation steps:
```sh
pnpm create playwright-sand4rt --ct
```
```sh
npm init playwright-sand4rt@latest -- --ct
```
```sh
yarn create playwright-sand4rt --ct
```
Now you can start creating your tests:
```ts
// button.tsx
type ButtonProps = {
title: string;
}
export function Button(props: ButtonProps) {
return {props.title}
}
```
```jsx
// button.test.tsx
import { test, expect } from '@sand4rt/experimental-ct-solid';
import { Button } from './components/button';
test('render props', async ({ mount }) => {
const component = await mount();
await expect(component).toContainText('Submit');
});
```
See the official [playwright component testing documentation](https://playwright.dev/docs/test-components) and the [tests](https://github.com/sand4rt/playwright-ct-solid/tree/main/ct-solid/tests) for more information on how to use it.