2017-05-29 21:50:03 +03:00
|
|
|
import hbs from 'htmlbars-inline-precompile';
|
2017-05-08 13:35:42 +03:00
|
|
|
import {describe, it} from 'mocha';
|
2017-05-29 21:50:03 +03:00
|
|
|
import {expect} from 'chai';
|
2017-05-08 13:35:42 +03:00
|
|
|
import {setupComponentTest} from 'ember-mocha';
|
|
|
|
|
2018-01-05 18:38:23 +03:00
|
|
|
describe('Integration: Component: gh-progress-bar', function () {
|
2017-05-08 13:35:42 +03:00
|
|
|
setupComponentTest('gh-progress-bar', {
|
|
|
|
integration: true
|
|
|
|
});
|
|
|
|
|
2018-01-05 18:38:23 +03:00
|
|
|
it('renders', function () {
|
2017-05-08 13:35:42 +03:00
|
|
|
// Set any properties with this.set('myProperty', 'value');
|
|
|
|
// Handle any actions with this.on('myAction', function(val) { ... });
|
|
|
|
// Template block usage:
|
|
|
|
// this.render(hbs`
|
|
|
|
// {{#gh-progress-bar}}
|
|
|
|
// template content
|
|
|
|
// {{/gh-progress-bar}}
|
|
|
|
// `);
|
|
|
|
|
|
|
|
this.render(hbs`{{gh-progress-bar}}`);
|
|
|
|
expect(this.$()).to.have.length(1);
|
|
|
|
});
|
|
|
|
});
|