Skip to content

Instantly share code, notes, and snippets.

@fstbraz
Last active August 31, 2022 15:12
Show Gist options
  • Save fstbraz/b9a500bf1e51de2cfff4137171734f83 to your computer and use it in GitHub Desktop.
Save fstbraz/b9a500bf1e51de2cfff4137171734f83 to your computer and use it in GitHub Desktop.
cross-framework-web-components-4
import { Card } from './card';
describe('Card Component', () => {
let el: Card;
const card = {
altText: 'Je suis a image',
ctaText: 'Click me',
image: 'http://example.com/image/',
link: 'http://example.com/link/',
text: 'amazing text',
textDesc: 'other amazing text for test',
textDescLink: 'http://example.com/author/',
title: 'amazing title',
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment