@@ -28,6 +28,7 @@ import {
28
28
} from '../models/filterConditions' ;
29
29
import deepCopy from './ignore/deepCopy' ;
30
30
import { Children } from 'react' ;
31
+ import _ from 'lodash' ;
31
32
32
33
describe ( 'master tree tests' , ( ) => {
33
34
let treeRoot : Tree ;
@@ -421,20 +422,7 @@ describe('master tree tests', () => {
421
422
} ) ;
422
423
423
424
describe ( 'Replace fromLinkFiber class value' , ( ) => {
424
- xit ( 'NEED UNDERSTANDING THE PURPOSE OF FROMLINKFIBER FOR FRONTEND, testing below is just to ensure functionality is working' , ( ) => { } ) ;
425
- describe ( 'should update linkFiber information as applicable' , ( ) => {
426
- it ( 'should add LinkFiber if there is no classlist' , ( ) => {
427
- // Construct Fiber Node (root => childNode)
428
- mockChildNode . stateNode . setAttribute = jest . fn ;
429
- mockChildNode . stateNode . classList = [ ] ;
430
- const tree = createTree ( mockChildNode ) ;
431
-
432
- // Construct Result Tree (root => childTree)
433
- treeRoot . children . push ( mockChildTree ) ;
434
- // Compare the two trees:
435
- expect ( tree ) . toEqual ( treeRoot ) ;
436
- } ) ;
437
- } ) ;
425
+ xit ( 'NEED UNDERSTANDING THE PURPOSE OF FROMLINKFIBER FOR FRONTEND, currently unable to replicate DOMTokenList instance' , ( ) => { } ) ;
438
426
} ) ;
439
427
} ) ;
440
428
@@ -545,7 +533,7 @@ describe('master tree tests', () => {
545
533
} ) ;
546
534
} ) ;
547
535
548
- describe ( 'createComponentActionsRecord' , ( ) => {
536
+ describe ( 'createComponentActionsRecord unit test ' , ( ) => {
549
537
it ( 'should save a new component action record if the Fiber node is a stateful class component' , ( ) => {
550
538
mockFiberNode . tag = ClassComponent ;
551
539
mockFiberNode . stateNode = {
0 commit comments