From 049ea9e2b4700a163a3af3093bed284c92db8f30 Mon Sep 17 00:00:00 2001 From: Mike North Date: Fri, 21 Sep 2018 10:54:01 -0700 Subject: [PATCH] [ember] more tests --- types/ember/test/ember-module-tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/ember/test/ember-module-tests.ts b/types/ember/test/ember-module-tests.ts index fdafb0a6c0..609e5131fe 100644 --- a/types/ember/test/ember-module-tests.ts +++ b/types/ember/test/ember-module-tests.ts @@ -202,7 +202,7 @@ const h1 = Ember.Helper.extend({ } }); // Ember.HistoryLocation -const hil = new Ember.HistoryLocation(); +const hil = new Ember.HistoryLocation(); // $ExpectType HistoryLocation // Ember.LinkComponent Ember.LinkComponent.create(); // $ExpectType LinkComponent // Ember.Mixin @@ -232,7 +232,7 @@ const na: Ember.NativeArray = Ember.A([2, 3, 4]); na; // $ExpectType NativeArray na.clear(); // $ExpectType NativeArray // Ember.NoneLocation -new Ember.NoneLocation(); +new Ember.NoneLocation(); // $ExpectType NoneLocation // Ember.Object new Ember.Object(); // Ember.ObjectProxy