tessl install tessl/npm-stencil--core@4.36.0A comprehensive web component compiler that transforms TypeScript and JSX code into standards-compliant web components with complete development toolchain.
Agent Success
Agent success rate when using this tile
75%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.44x
Baseline
Agent success rate without this tile
52%
Build a comprehensive server-side test suite for a user profile web component using a mock DOM environment. The tests should verify component rendering, property handling, and user interactions without requiring a real browser.
The component to test has the following behavior:
Create tests that validate the following:
@generates
/**
* Test suite for UserProfile component using server-side mock DOM
*/
// Test helper types
interface TestPage {
root: HTMLElement;
body: HTMLElement;
doc: Document;
win: Window;
waitForChanges(): Promise<void>;
}
interface UserProfileComponent {
name: string;
email: string;
bio: string;
}Provides web component development and server-side testing with mock DOM support.
@satisfied-by