Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ryansutc/1dc45b1411a6e173e6ab7ff8d94cdec9 to your computer and use it in GitHub Desktop.
Save ryansutc/1dc45b1411a6e173e6ab7ff8d94cdec9 to your computer and use it in GitHub Desktop.
Ember Test #1
import Ember from 'ember';
const { get, set, computed } = Ember;
export default Ember.Controller.extend({
isButtonOn: false,
// begin edit area
toggle () {
var bool = this.isButtonOn ? false: true;
this.set('isButtonOn', bool);
},
text: computed('isButtonOn', function () {
// end edit area
return get(this, 'isButtonOn') ?
'Congrats you\'ve fixed it and turned on the button' :
'You must fix controllers/application.js and press the button';
}),
});
<h1>Ember Test #1</h1>
<button {{action toggle}}>
Button ({{if isButtonOn "On" "Off"}})
</button>
<br>
<br>
{{text}}
<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.12.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.12.0",
"ember-template-compiler": "2.12.0",
"ember-testing": "2.12.0"
},
"addons": {
"ember-data": "2.12.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment