Skip to content

Instantly share code, notes, and snippets.

@incognos
Last active April 14, 2018 17:11
Show Gist options
  • Save incognos/345f35ff054c9fa18965213d57eac4a9 to your computer and use it in GitHub Desktop.
Save incognos/345f35ff054c9fa18965213d57eac4a9 to your computer and use it in GitHub Desktop.
birthday-component
import Ember from 'ember';
export default Ember.Component.extend({
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{birthday-component}}
{{outlet}}
<br>
<br>
import Ember from 'ember';
export default function destroyApp(application) {
Ember.run(application, 'destroy');
}
import Resolver from '../../resolver';
import config from '../../config/environment';
const resolver = Resolver.create();
resolver.namespace = {
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix
};
export default resolver;
import Ember from 'ember';
import Application from '../../app';
import config from '../../config/environment';
const { run } = Ember;
const assign = Ember.assign || Ember.merge;
export default function startApp(attrs) {
let application;
let attributes = assign({rootElement: "#test-root"}, config.APP);
attributes = assign(attributes, attrs); // use defaults, but you can override;
run(() => {
application = Application.create(attributes);
application.setupForTesting();
application.injectTestHelpers();
});
return application;
}
import resolver from './helpers/resolver';
import {
setResolver
} from 'ember-qunit';
setResolver(resolver);
{
"version": "0.13.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.16.2",
"ember-template-compiler": "2.16.2",
"ember-testing": "2.16.2"
},
"addons": {
"bootstrap": "^3.3.7",
"ember-data": "2.16.3",
"ember-bootstrap": "1.2.1",
"ember-bootstrap-power-select": "1.0.0-rc.1",
"ember-power-select": "2.0.0-beta.0",
"ember-power-select-blockless": "0.3.1",
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment