mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Closes #4096 - Swap this.innerText to $(this).text()
This commit is contained in:
parent
e3f0479d76
commit
9ccfa1c3aa
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
define(function (require) {
|
||||
require('components/paginated_table/paginated_table');
|
||||
var _ = require('lodash');
|
||||
var $ = require('jquery');
|
||||
var sinon = require('sinon/sinon');
|
||||
|
||||
describe('paginated table', function () {
|
||||
|
@ -240,7 +241,7 @@ define(function (require) {
|
|||
it('should should have duplicate column titles', function () {
|
||||
var columns = $el.find('thead th span');
|
||||
columns.each(function () {
|
||||
expect(this.innerText).to.be(colText);
|
||||
expect($(this).text()).to.be(colText);
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue