Skip to content

Instantly share code, notes, and snippets.

@MrChriZ
Created February 20, 2018 17:37
Show Gist options
  • Save MrChriZ/a28d99d1824a68678f9866d499000d12 to your computer and use it in GitHub Desktop.
Save MrChriZ/a28d99d1824a68678f9866d499000d12 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
import Ember from 'ember';
export default Ember.Service.extend({
});
{{#mdc-tab-bar isIconTabBarWithText=true as |tab-bar|}}
{{#tab-bar.tab click=(transition-to 'index') id="ownerTab"}}Home{{/tab-bar.tab}}
{{#tab-bar.tab "about" click=(transition-to 'about')}} About {{/tab-bar.tab}}
{{#tab-bar.tab "blog" click=(transition-to 'blog')}}Blog {{/tab-bar.tab}}
{{#tab-bar.tab "contact" click=(transition-to 'contact')}} Contact {{/tab-bar.tab}}
{{/mdc-tab-bar}}
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.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": true
},
"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": {
"ember-data": "2.16.3",
"ember-cli-sass": "7.1.4",
"ember-material-components": "0.0.4",
"ember-transition-helper": "^1.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment