mirror of https://github.com/rancher/ui.git
29 lines
616 B
JavaScript
29 lines
616 B
JavaScript
import {
|
|
moduleFor,
|
|
test
|
|
} from 'ember-qunit';
|
|
|
|
import Ember from 'ember';
|
|
import { initialize } from 'ui/initializers/extend-ember-input';
|
|
|
|
var container, application;
|
|
|
|
moduleFor('initializer:extend-ember-input', {
|
|
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);
|
|
});
|
|
|