test(accordion): add unit tests (#2079)

This commit is contained in:
Eric Liu 2024-12-29 12:51:06 -08:00 committed by GitHub
commit cee676331a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 239 additions and 219 deletions

View file

@ -0,0 +1,27 @@
<script lang="ts">
import { Accordion, AccordionItem } from "carbon-components-svelte";
</script>
<Accordion disabled>
<AccordionItem title="Natural Language Classifier">
<p>
Natural Language Classifier uses advanced natural language processing and
machine learning techniques to create custom classification models. Users
train their data and the service predicts the appropriate category for the
inputted text.
</p>
</AccordionItem>
<AccordionItem title="Natural Language Understanding">
<p>
Analyze text to extract meta-data from content such as concepts, entities,
emotion, relations, sentiment and more.
</p>
</AccordionItem>
<AccordionItem title="Language Translator">
<p>
Translate text, documents, and websites from one language to another.
Create industry or region-specific translations via the service's
customization capability.
</p>
</AccordionItem>
</Accordion>