@impargo/react-here-maps
Version:
React.js HERE Maps component
10 lines (8 loc) • 334 B
text/typescript
import { getPlatform } from '../../src/utils/get-platform'
describe('getPlatform', () => {
it('should return same platform when called multiple times', () => {
const platform1 = getPlatform({ apikey: 'test_apikey' })
const platform2 = getPlatform({ apikey: 'test_apikey' })
expect(platform1).toEqual(platform2)
})
})