Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasneirynck committed Sep 22, 2020
1 parent f1db78e commit 6db0ad3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions x-pack/plugins/maps/server/mvt/get_tile.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
*/

import { getGridTile, getTile } from './get_tile';
import { TILE_SEARCHES, TILE_GRIDAGGS } from './__tests__/tile_es_responses';
import { TILE_GRIDAGGS, TILE_SEARCHES } from './__tests__/tile_es_responses';
import { Logger } from 'src/core/server';
import * as path from 'path';
import * as fs from 'fs';
import { RENDER_AS } from '../../common/constants';
import { ES_GEO_FIELD_TYPE, RENDER_AS } from '../../common/constants';

describe('getTile', () => {
const mockCallElasticsearch = jest.fn();
Expand Down Expand Up @@ -112,6 +112,7 @@ describe('getGridTile', () => {
} as unknown) as Logger,
callElasticsearch: mockCallElasticsearch,
requestType: RENDER_AS.POINT,
geoFieldType: ES_GEO_FIELD_TYPE.GEO_POINT,
});

compareTiles('./__tests__/pbf/0_0_0_grid.pbf', tile);
Expand Down

0 comments on commit 6db0ad3

Please sign in to comment.