diff --git a/src/components/map/TiledLayer.test.tsx b/src/components/map/TiledLayer.test.tsx
index 81bc9a9..ba02f58 100644
--- a/src/components/map/TiledLayer.test.tsx
+++ b/src/components/map/TiledLayer.test.tsx
@@ -2,7 +2,9 @@ import { render, screen } from '@testing-library/react';
import TiledLayer from './TiledLayer';
import { TileFactory } from './types';
-const fakeTileFactory: TileFactory = (keyObject) => <>>;
+const fakeTileFactory: TileFactory = (keyObject) => (
+ {JSON.stringify(keyObject)}
+);
describe('The TiledLayer component ', () => {
test('exposes the tiles needed per its viewport', () => {
@@ -22,13 +24,25 @@ describe('The TiledLayer component ', () => {