Skip to content

Instantly share code, notes, and snippets.

@sukima
Last active December 13, 2016 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sukima/02baa69810374f7399194712f038d4d8 to your computer and use it in GitHub Desktop.
Save sukima/02baa69810374f7399194712f038d4d8 to your computer and use it in GitHub Desktop.
e-c acceptance testing timers
import Ember from 'ember';
import { task, timeout } from 'ember-concurrency';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
lockoutCountDown: 0,
lockoutSeconds: 60,
lockoutTimer: task(function * () {
for (let seconds = this.get('lockoutSeconds'); seconds > 0; seconds--) {
this.set('lockoutCountDown', seconds);
yield timeout(1000);
}
}).drop()
});
<h1>Welcome to {{appName}}</h1>
{{#if lockoutTimer.isRunning}}
<div class="lockout-message">
LOCKOUT! Count down: {{lockoutCountDown}}
</div>
{{/if}}
<button class="start-timer" onclick={{perform lockoutTimer}}>Start timer</button>
import { test } from 'qunit';
import moduleForAcceptance from '../../tests/helpers/module-for-acceptance';
moduleForAcceptance('e-c timers in acceptance tests');
test('starting timer shows count down message', function(assert) {
visit('/');
click('button.start-timer');
andThen(function() {
assert.ok(find('.lockout-message').is(':visible'));
Ember.run.cancelTimers();
});
});
import Ember from 'ember';
export default function destroyApp(application) {
Ember.run(application, 'destroy');
}
import { module } from 'qunit';
import Ember from 'ember';
import startApp from '../helpers/start-app';
import destroyApp from '../helpers/destroy-app';
const { RSVP: { Promise } } = Ember;
export default function(name, options = {}) {
module(name, {
beforeEach() {
this.application = startApp();
if (options.beforeEach) {
return options.beforeEach.apply(this, arguments);
}
},
afterEach() {
let afterEach = options.afterEach && options.afterEach.apply(this, arguments);
return Promise.resolve(afterEach).then(() => destroyApp(this.application));
}
});
}
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.10.6",
"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.9.0",
"ember-data": "2.9.0",
"ember-template-compiler": "2.9.0",
"ember-testing": "2.9.0"
},
"addons": {
"ember-concurrency": "*"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment