Daniel Zlotin il y a 7 ans
Parent
révision
8eee8d173d
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      lib/src/commands/LayoutTreeParser.test.js

+ 1
- 1
lib/src/commands/LayoutTreeParser.test.js Voir le fichier

@@ -319,7 +319,7 @@ describe('LayoutTreeParser', () => {
319 319
 
320 320
   describe('createContainer', () => {
321 321
     it('creates container object with passed data', () => {
322
-      expect(uut._createContainer({ foo: 'bar' })).toEqual({ type: 'Container', data: { foo: 'bar' }, children: [] });
322
+      expect(uut.parseFromSimpleJSON({ name: 'theContainer', foo: 'bar' })).toEqual({ type: 'Container', data: { name: 'theContainer', foo: 'bar' }, children: [] });
323 323
     });
324 324
   });
325 325