mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Telemetry][API Integration] size_in_bytes to be a number (#74664)
This commit is contained in:
parent
a4ec4332c6
commit
0c16ca4649
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ export default function ({ getService }) {
|
|||
expect(stats.stack_stats.data[0].index_count).to.be(1);
|
||||
expect(stats.stack_stats.data[0].doc_count).to.be(0);
|
||||
expect(stats.stack_stats.data[0].ecs_index_count).to.be(0);
|
||||
expect(stats.stack_stats.data[0].size_in_bytes).to.be.greaterThan(0);
|
||||
expect(stats.stack_stats.data[0].size_in_bytes).to.be.a('number');
|
||||
});
|
||||
|
||||
it('should pull local stats and validate fields', async () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue