11 lines
244 B
TypeScript
Raw Normal View History

import register from '@playwright/experimental-ct-svelte/register';
2022-03-11 15:46:11 -08:00
import App from './App.svelte';
import ContactCard from './lib/ContactCard.svelte';
import Counter from './lib/Counter.svelte';
register({
App,
Counter,
ContactCard
});