File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 11import Tree from '../tree' ;
2+ import { serializeState , scrubUnserializableMembers } from '../tree' ;
23
34/**
45 * Created new tree under sibling and copy and clean tree describe block --
@@ -8,6 +9,10 @@ import Tree from '../tree';
89 * Possible fix if more time allowed: Making use of beforeEach or afterEach --
910 */
1011
12+ describe ( 'Serialize state unit test' , ( ) => {
13+ const dummyState = { counter : 1 , playerOne : 'X' } ;
14+ } ) ;
15+
1116describe ( 'Tree unit test' , ( ) => {
1217 const newTree = new Tree ( { } ) ;
1318 describe ( 'Constructor' , ( ) => {
@@ -79,6 +84,8 @@ describe('Tree unit test', () => {
7984 } ) ;
8085 } ) ;
8186
87+ // TO DO- add serializing state tests
88+ describe ( 'Serializing state unit test' , ( ) => { } ) ;
8289 // review this test
8390 // returnSibling not used?
8491 // Check Test
You can’t perform that action at this time.
0 commit comments