mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
25 lines
601 B
JavaScript
25 lines
601 B
JavaScript
/* jshint expr:true */
|
|
import { expect } from 'chai';
|
|
import {
|
|
describeComponent,
|
|
it
|
|
} from 'ember-mocha';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import run from 'ember-runloop';
|
|
|
|
describeComponent(
|
|
'gh-datetime-input',
|
|
'Integration: Component: gh-datetime-input',
|
|
{
|
|
integration: true
|
|
},
|
|
function () {
|
|
it('renders', function () {
|
|
// renders the component on the page
|
|
// this.render(hbs`{{gh-datetime-input}}`);
|
|
//
|
|
// expect(this.$('.ember-text-field gh-input')).to.have.length(1);
|
|
});
|
|
}
|
|
);
|