From d4ab88116192d90a632c873acab526b3feefa45f Mon Sep 17 00:00:00 2001 From: Vincent Fiduccia Date: Fri, 26 Jun 2015 01:37:16 -0700 Subject: [PATCH] Jshint --- tests/unit/initializers/lookup-test.js | 28 -------------------------- 1 file changed, 28 deletions(-) delete mode 100644 tests/unit/initializers/lookup-test.js diff --git a/tests/unit/initializers/lookup-test.js b/tests/unit/initializers/lookup-test.js deleted file mode 100644 index 302c3633e..000000000 --- a/tests/unit/initializers/lookup-test.js +++ /dev/null @@ -1,28 +0,0 @@ -import { - moduleFor, - test -} from 'ember-qunit'; - -import Ember from 'ember'; -import { initialize } from 'ui/initializers/lookup'; - -var container, application; - -moduleFor('initializer:lookup', { - setup: function() { - Ember.run(function() { - container = new Ember.Container(); - application = Ember.Application.create(); - application.deferReadiness(); - }); - } -}); - -// Replace this with your real tests. -test('it works', function(assert) { - initialize(container, application); - - // you would normally confirm the results of the initializer here - assert.ok(true); -}); -