mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
Fix timepicker test
This commit is contained in:
parent
7374b97d7c
commit
4e2ef0ff54
1 changed files with 3 additions and 3 deletions
|
@ -269,8 +269,8 @@ define(function (require) {
|
|||
inputs = {
|
||||
fromInput: $elem.find('.kbn-timepicker-section input[ng-model="absolute.from"]'),
|
||||
toInput: $elem.find('.kbn-timepicker-section input[ng-model="absolute.to"]'),
|
||||
fromCalendar: $elem.find('.kbn-timepicker-section div[ng-model="absolute.from"] '),
|
||||
toCalendar: $elem.find('.kbn-timepicker-section div[ng-model="absolute.to"] '),
|
||||
fromCalendar: $elem.find('.kbn-timepicker-section table[ng-model="absolute.from"] '),
|
||||
toCalendar: $elem.find('.kbn-timepicker-section table[ng-model="absolute.to"] '),
|
||||
};
|
||||
|
||||
});
|
||||
|
@ -281,7 +281,7 @@ define(function (require) {
|
|||
done();
|
||||
});
|
||||
|
||||
it('should have divs that contain calendars bound to absolute.from and absolute.to', function (done) {
|
||||
it('should have tables that contain calendars bound to absolute.from and absolute.to', function (done) {
|
||||
expect(inputs.fromCalendar.length).to.be(1);
|
||||
expect(inputs.toCalendar.length).to.be(1);
|
||||
done();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue