Skip to content
Snippets Groups Projects

feat: add content query (MIN-61)

Merged mateuszmiko requested to merge feature/MIN-61-connect-content-query into development
Files
17
import { PROJECT_ID } from '@/constants/mapId';
import { getBioEntityContentsStringWithQuery } from './getBioEntityContentsStringWithQuery';
describe('getBioEntityContentsStringWithQuery', () => {
it('should return url string', () => {
expect(getBioEntityContentsStringWithQuery('park7')).toBe(
`projects/${PROJECT_ID}/models/*/bioEntities:search?query=park7`,
);
});
});
Loading