summaryrefslogtreecommitdiff
path: root/js/mixins/dom_iterable_test.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-04-21 16:40:10 -0400
committerGitHub <noreply@github.com>2019-04-21 16:40:10 -0400
commit9dfebbc9496138efbeedc431068f41662c780f3e (patch)
treec3718c3dc132d11c08c8fc18933daebf886bf787 /js/mixins/dom_iterable_test.ts
parent6cded14bdf313762956d4d5361cfe8115628b535 (diff)
Fix eslint warnings (#2151)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com> Co-authored-by: LE GOFF Vincent <g_n_s@hotmail.fr>
Diffstat (limited to 'js/mixins/dom_iterable_test.ts')
-rw-r--r--js/mixins/dom_iterable_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/mixins/dom_iterable_test.ts b/js/mixins/dom_iterable_test.ts
index 36e3de678..4c84fa68e 100644
--- a/js/mixins/dom_iterable_test.ts
+++ b/js/mixins/dom_iterable_test.ts
@@ -25,7 +25,7 @@ function setup() {
};
}
-test(function testDomIterable() {
+test(function testDomIterable(): void {
const { DomIterable, Base } = setup();
const fixture: Array<[string, number]> = [["foo", 1], ["bar", 2]];
@@ -59,7 +59,7 @@ test(function testDomIterable() {
assertEquals(DomIterable.name, Base.name);
});
-test(function testDomIterableScope() {
+test(function testDomIterableScope(): void {
const { DomIterable } = setup();
const domIterable = new DomIterable([["foo", 1]]);