@digigov/react-core 2.0.0-rc.31 → 2.0.0-rc.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,34 +0,0 @@
1
- import React from 'react';
2
- import { render } from '@testing-library/react';
3
-
4
- import CircularProgress from '@digigov/react-core/CircularProgress';
5
-
6
- it('renders the CircularProgress', () => {
7
- expect(render(<CircularProgress />).baseElement).toMatchSnapshot();
8
- });
9
-
10
- it('renders the CircularProgress with size sm', () => {
11
- expect(render(<CircularProgress size="sm" />).baseElement).toMatchSnapshot();
12
- });
13
-
14
- it('renders the CircularProgress with size lg', () => {
15
- expect(render(<CircularProgress size="lg" />).baseElement).toMatchSnapshot();
16
- });
17
-
18
- it('renders the CircularProgress with color=secondary prop', () => {
19
- expect(
20
- render(<CircularProgress color={'secondary'} />).baseElement
21
- ).toMatchSnapshot();
22
- });
23
-
24
- it('renders the CircularProgress with color=secondary and size sm props', () => {
25
- expect(
26
- render(<CircularProgress color={'secondary'} size="sm" />).baseElement
27
- ).toMatchSnapshot();
28
- });
29
-
30
- it('renders the CircularProgress with color=secondary and size lg props', () => {
31
- expect(
32
- render(<CircularProgress color={'secondary'} size="lg" />).baseElement
33
- ).toMatchSnapshot();
34
- });