add missing semicolon

This commit is contained in:
Haochen Wu 2019-06-08 22:25:14 -07:00
parent 307dfcc911
commit 46e9243759

View File

@ -206,14 +206,14 @@ suite('Stage', function() {
test('dangling stage ', function() { test('dangling stage ', function() {
var stage = addStage(); var stage = addStage();
var container = stage.container(); var container = stage.container();
var parent = stage.content.parentElement var parent = stage.content.parentElement;
parent.removeChild(stage.content); parent.removeChild(stage.content);
stage.setContainer(container); stage.setContainer(container);
assert.equal(stage.container(), container); assert.equal(stage.container(), container);
}) });
// ====================================================== // ======================================================
test('stage getIntersection()', function() { test('stage getIntersection()', function() {