accdefd18e
WIP Unskip some lower level trivial tests. This is the beginning of work to unskip some of the more trivial tests that I'd skipped a while back (if the thing they are testing broke, they would have failed higher up in other acceptance tests). I'd rather keep the tests, as they do test things in a more isolated manner, and the plan was to always come back and work to unskip them time allowing. I didn't get to far into this work in progress here, but I'd rather merge what I've done all the same and come back at a later date and continue.
25 lines
834 B
JavaScript
25 lines
834 B
JavaScript
import { moduleForComponent, test } from 'ember-qunit';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
moduleForComponent('code-editor', 'Integration | Component | code editor', {
|
|
integration: true,
|
|
});
|
|
|
|
test('it renders', function(assert) {
|
|
// Set any properties with this.set('myProperty', 'value');
|
|
// Handle any actions with this.on('myAction', function(val) { ... });
|
|
|
|
this.render(hbs`{{code-editor}}`);
|
|
|
|
// this test is just to prove it renders something without producing
|
|
// an error. It renders the number 1, but seems to also render some sort of trailing space
|
|
// so just check for presence of CodeMirror
|
|
assert.equal(this.$().find('.CodeMirror').length, 1);
|
|
|
|
// Template block usage:
|
|
this.render(hbs`
|
|
{{#code-editor}}{{/code-editor}}
|
|
`);
|
|
assert.equal(this.$().find('.CodeMirror').length, 1);
|
|
});
|