2017-05-29 21:50:03 +03:00
|
|
|
import hbs from 'htmlbars-inline-precompile';
|
2017-04-11 16:39:45 +03:00
|
|
|
import {describe, it} from 'mocha';
|
2017-05-29 21:50:03 +03:00
|
|
|
import {expect} from 'chai';
|
2017-04-11 16:39:45 +03:00
|
|
|
import {setupComponentTest} from 'ember-mocha';
|
|
|
|
|
2018-01-05 18:38:23 +03:00
|
|
|
describe('Integration: Component: gh-publishmenu-draft', function () {
|
2017-04-11 16:39:45 +03:00
|
|
|
setupComponentTest('gh-publishmenu-draft', {
|
|
|
|
integration: true
|
|
|
|
});
|
|
|
|
|
2018-01-05 18:38:23 +03:00
|
|
|
it.skip('renders', function () {
|
2017-04-11 16:39:45 +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-publishmenu-draft}}
|
|
|
|
// template content
|
|
|
|
// {{/gh-publishmenu-draft}}
|
|
|
|
// `);
|
|
|
|
|
|
|
|
this.render(hbs`{{gh-publishmenu-draft}}`);
|
|
|
|
expect(this.$()).to.have.length(1);
|
|
|
|
});
|
|
|
|
});
|