File tree Expand file tree Collapse file tree 5 files changed +51
-0
lines changed Expand file tree Collapse file tree 5 files changed +51
-0
lines changed Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import { render } from "react-testing-library" ;
3
+ import { Button } from "../../src/index" ;
4
+
5
+ describe ( "Button" , ( ) => {
6
+ test ( "renders without crashing" , ( ) => {
7
+ render ( < Button /> ) ;
8
+ } ) ;
9
+ } ) ;
Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import { render } from "react-testing-library" ;
3
+ import { Divider } from "../../src/index" ;
4
+
5
+ describe ( "Divider" , ( ) => {
6
+ test ( "renders without crashing" , ( ) => {
7
+ render ( < Divider /> ) ;
8
+ } ) ;
9
+ } ) ;
Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import { render } from "react-testing-library" ;
3
+ import { Grid } from "../../src/index" ;
4
+
5
+ describe ( "Grid" , ( ) => {
6
+ test ( "renders without crashing" , ( ) => {
7
+ render ( < Grid /> ) ;
8
+ } ) ;
9
+
10
+ describe ( "Column" , ( ) => {
11
+ test ( "renders without crashing" , ( ) => {
12
+ render ( < Grid . Column width = "4" /> ) ;
13
+ } ) ;
14
+ } ) ;
15
+ } ) ;
Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import { render } from "react-testing-library" ;
3
+ import { Loading } from "../../src/index" ;
4
+
5
+ describe ( "Loading" , ( ) => {
6
+ test ( "renders without crashing" , ( ) => {
7
+ render ( < Loading /> ) ;
8
+ } ) ;
9
+ } ) ;
Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import { render } from "react-testing-library" ;
3
+ import { Table } from "../../src/index" ;
4
+
5
+ describe ( "Table" , ( ) => {
6
+ test ( "renders without crashing" , ( ) => {
7
+ render ( < Table headings = { [ "heading" ] } /> ) ;
8
+ } ) ;
9
+ } ) ;
You can’t perform that action at this time.
0 commit comments