mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 01:13:23 -04:00
[Discover] Unskip Painless date functional test (#114224)
* [Discover] Unskip functional test * Remove comment Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
cba91fdaab
commit
9d2c536ccb
1 changed files with 2 additions and 3 deletions
|
@ -367,8 +367,7 @@ export default function ({ getService, getPageObjects }) {
|
|||
});
|
||||
});
|
||||
|
||||
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/113745
|
||||
describe.skip('creating and using Painless date scripted fields', function describeIndexTests() {
|
||||
describe('creating and using Painless date scripted fields', function describeIndexTests() {
|
||||
const scriptedPainlessFieldName2 = 'painDate';
|
||||
|
||||
it('should create scripted field', async function () {
|
||||
|
@ -384,7 +383,7 @@ export default function ({ getService, getPageObjects }) {
|
|||
'date',
|
||||
{ format: 'date', datePattern: 'YYYY-MM-DD HH:00' },
|
||||
'1',
|
||||
"doc['utc_time'].value.getMillis() + (1000) * 60 * 60"
|
||||
"doc['utc_time'].value.toEpochMilli() + (1000) * 60 * 60"
|
||||
);
|
||||
await retry.try(async function () {
|
||||
expect(parseInt(await PageObjects.settings.getScriptedFieldsTabCount())).to.be(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue