diff --git a/test/unit/configure.html b/test/unit/configure.html
index 30d12f7ef3..06be8105f4 100644
--- a/test/unit/configure.html
+++ b/test/unit/configure.html
@@ -333,7 +333,7 @@
fooChanged: function(foo) {
this.$.lazy.hadAttrProp = foo;
}
- })
+ });
});
diff --git a/test/unit/custom-style-async.html b/test/unit/custom-style-async.html
index 1d225fdb6e..c6ff2e7e87 100644
--- a/test/unit/custom-style-async.html
+++ b/test/unit/custom-style-async.html
@@ -35,7 +35,7 @@
HTMLImports.whenReady(function() {
Polymer({
is: 'x-host'
- })
+ });
});
diff --git a/test/unit/custom-style.html b/test/unit/custom-style.html
index 684ba102a3..82a117c1b0 100644
--- a/test/unit/custom-style.html
+++ b/test/unit/custom-style.html
@@ -289,7 +289,7 @@
Polymer({
is: 'x-blue-bold-text'
});
- })
+ });
diff --git a/test/unit/flattened-nodes-observer.html b/test/unit/flattened-nodes-observer.html
index b436b80fd0..6415983c70 100644
--- a/test/unit/flattened-nodes-observer.html
+++ b/test/unit/flattened-nodes-observer.html
@@ -25,7 +25,7 @@
diff --git a/test/unit/gestures.html b/test/unit/gestures.html
index 165cecbca9..31fb5d7882 100644
--- a/test/unit/gestures.html
+++ b/test/unit/gestures.html
@@ -74,7 +74,7 @@
identifier: 1,
// target is set to the element with `addEventListener`, which is app
target: app
- }]
+ }];
let touchstart = new CustomEvent('touchstart', {bubbles: true, composed: true});
touchstart.touches = touchstart.changedTouches = touches;
let touchend = new CustomEvent('touchend', {composed: true, bubbles: true});
@@ -109,7 +109,7 @@
Polymer.RenderStatus.afterNextRender(null, function() {
inner = outer.$.inner;
done();
- })
+ });
});
suite('setup', function() {
@@ -497,7 +497,7 @@
suiteSetup(function() {
el = document.createElement('x-imperative');
document.body.appendChild(el);
- fn = function(e) { el.handle(e) };
+ fn = function(e) { el.handle(e); };
});
suiteTeardown(function() {
document.body.removeChild(el);
@@ -514,7 +514,7 @@
el.dispatchEvent(ev);
assert.equal(el.stream.length, 2);
assert.equal(el.stream[1].type, 'up');
- })
+ });
test('remove listeners with removeListener', function() {
Polymer.Gestures.remove(el, 'down', fn);
@@ -524,7 +524,7 @@
ev = new CustomEvent('mouseup', {bubbles: true, composed: true});
el.dispatchEvent(ev);
assert.equal(el.stream.length, 2);
- })
+ });
});
suite('setScrollDirection', function() {
@@ -539,7 +539,7 @@
assert.equal(el[key], 'pan-x');
el.setScrollDirection('y');
assert.equal(el[key], 'pan-y');
- })
+ });
});
suite('Regression Testing', function() {
@@ -550,7 +550,7 @@
document.dispatchEvent(new MouseEvent('click', { detail: 1, clientX: 100, bubbles: true, composed: true }));
Polymer.Gestures.remove(document, 'tap', null);
});
- })
+ });