mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
import register from '@playwright/experimental-ct-svelte/register';
|
|
import App from './App.svelte';
|
|
import ContactCard from './lib/ContactCard.svelte';
|
|
import Counter from './lib/Counter.svelte';
|
|
|
|
register({
|
|
App,
|
|
Counter,
|
|
ContactCard
|
|
});
|