Skip to content

Instantly share code, notes, and snippets.

@sukima
Last active March 5, 2019 01:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sukima/d7804619b8ccd4ec141c20de5903da41 to your computer and use it in GitHub Desktop.
Save sukima/d7804619b8ccd4ec141c20de5903da41 to your computer and use it in GitHub Desktop.
Testing Action Errors
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render, click } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Component | my component', function(hooks) {
setupRenderingTest(hooks);
hooks.beforeEach(function() {
this.testError = () => { throw new Error('bork'); };
});
test('it renders', async function(assert) {
await render(hbs`<button id="test-button" {{action this.testError}}/>`);
try {
await click('#test-button');
assert.ok(false, 'expected clicking to throw an error');
} catch (error) {
assert.ok(true);
}
});
});
import Application from '../app';
import config from '../config/environment';
import { setApplication } from '@ember/test-helpers';
import { start } from 'ember-qunit';
setApplication(Application.create(config.APP));
start();
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"ENV": {
"APP": {
"autoboot": false
}
},
"options": {
"use_pods": false,
"enable-testing": true
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment