Skip to content

Commit 06aed17

Browse files
committed
tree testing
1 parent 310b85d commit 06aed17

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

__tests__/tree.test.tsx

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import tree from '../app/src/tree/TreeChart';
2+
3+
xdescribe('Testing the tree functionality', function () {
4+
5+
//TEST 'ADD COMPONENT TO PAGE'
6+
xdescribe('ADD COMPONENT TO PAGE', () => {
7+
it('should add a new reusable component to page', () => {
8+
9+
})
10+
})
11+
12+
//TEST 'ADD COMPONENT TO ANOTHER COMPONENT'
13+
xdescribe('ADD COMPONENT TO ANOTHER COMPONENT', () => {
14+
it('should add child component to top-level component', () => {
15+
16+
})
17+
})
18+
19+
//TEST 'ADD A HTML ELEMENT TO A PAGE'
20+
xdescribe('ADD CHILD TO COMPONENT', () => {
21+
it('should add child component to top-level component', () => {
22+
23+
})
24+
})
25+
26+
//TEST 'ADD A HTML ELEMENT TO A COMPONENT'
27+
xdescribe('', () => {
28+
it('', () => {
29+
30+
})
31+
})
32+
33+
})

0 commit comments

Comments
 (0)