mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-17 03:01:25 +00:00
chnages to sidenav
This commit is contained in:
parent
6be928a2d3
commit
a77127000d
186 changed files with 10791 additions and 833 deletions
18
src/components/InlineLoading/InlineLoading.test.js
Normal file
18
src/components/InlineLoading/InlineLoading.test.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
import { render } from '@testing-library/svelte';
|
||||
import Component from './InlineLoading.svelte';
|
||||
|
||||
test('InlineLoading', () => {
|
||||
const { container, rerender } = render(Component, {
|
||||
description: 'description',
|
||||
iconDescription: 'icon description'
|
||||
});
|
||||
|
||||
expect(container.querySelector('.bx--inline-loading')).toHaveTextContent('description');
|
||||
expect(container.querySelector('.bx--loading')).toBeInTheDocument();
|
||||
|
||||
rerender({ props: { status: 'error' } });
|
||||
expect(container.querySelector('.bx--inline-loading--error')).toBeInTheDocument();
|
||||
|
||||
rerender({ props: { status: 'finished' } });
|
||||
expect(container.querySelector('.bx--inline-loading__checkmark-container')).toBeInTheDocument();
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue