diff --git a/test/core/Container.js b/test/core/Container.js index 98d5b21..c402f85 100644 --- a/test/core/Container.js +++ b/test/core/Container.js @@ -74,6 +74,9 @@ it('should flag transform for recalculation', function () { const container = new PIXI.Container(); + + container.getBounds(); + const parentID = container.transform._parentID; const boundsID = container._boundsID; @@ -113,6 +116,7 @@ const container = new PIXI.Container(); container.addChild(new PIXI.Container()); + container.getBounds(); const parentID = container.transform._parentID; const boundsID = container._boundsID; @@ -248,6 +252,7 @@ const child = new PIXI.Container(); container.addChild(child); + container.getBounds(); const parentID = container.transform._parentID; const boundsID = container._boundsID; @@ -536,6 +541,7 @@ const container = new PIXI.Container(); container.addChild(new PIXI.Container()); + container.getBounds(); const parentID = container.transform._parentID; const boundsID = container._boundsID;