Skip to content

Commit

Permalink
fix: add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jhefferman-sfdc committed Nov 27, 2024
1 parent 4a001da commit 44a67cb
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<x-comments-text>
<template shadowrootmode="open">
<span>
totoyolototoyolo
</span>
</template>
</x-comments-text>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const tagName = 'x-comments-text';
export { default } from 'x/comments-text';
export * from 'x/comments-text';
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<span>toto{foo}yolo{bar}toto{baz}yolo</span>
</template>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { LightningElement } from 'lwc';

export default class extends LightningElement {
foo = '';
bar = undefined;
baz = null;
}

0 comments on commit 44a67cb

Please sign in to comment.