diff --git a/clouds/snowflake/libraries/javascript/libs/h3_kring_distances.js b/clouds/snowflake/libraries/javascript/libs/h3_kring_distances.js index fa2d28bd6..e55d7717c 100644 --- a/clouds/snowflake/libraries/javascript/libs/h3_kring_distances.js +++ b/clouds/snowflake/libraries/javascript/libs/h3_kring_distances.js @@ -2,4 +2,4 @@ import { h3Distance } from '../src/h3/h3_kring_distances/h3core_custom'; export default { h3Distance -}; +}; \ No newline at end of file diff --git a/clouds/snowflake/libraries/javascript/libs/h3_polyfill.js b/clouds/snowflake/libraries/javascript/libs/h3_polyfill.js index eb0399299..2be01f888 100644 --- a/clouds/snowflake/libraries/javascript/libs/h3_polyfill.js +++ b/clouds/snowflake/libraries/javascript/libs/h3_polyfill.js @@ -4,7 +4,7 @@ import { bboxClip, polygon, intersect, geometryCollection } from '@turf/turf'; export default { bboxClip, polyfill, - polygon, - intersect, - geometryCollection -}; + polygon, + intersect, + geometryCollection +}; \ No newline at end of file diff --git a/clouds/snowflake/libraries/javascript/test/h3.test.js b/clouds/snowflake/libraries/javascript/test/h3.test.js index bef4a71ab..e0a94fcb9 100644 --- a/clouds/snowflake/libraries/javascript/test/h3.test.js +++ b/clouds/snowflake/libraries/javascript/test/h3.test.js @@ -15,4 +15,4 @@ test('h3 library defined', () => { expect(h3PolyfillLib.polyfill).toBeDefined(); expect(kringDistancesLib.h3Distance).toBeDefined(); expect(uncompactLib.uncompact).toBeDefined(); -}); +}); \ No newline at end of file diff --git a/clouds/snowflake/modules/test/h3/H3_BOUNDARY.test.js b/clouds/snowflake/modules/test/h3/H3_BOUNDARY.test.js index 3bbf32f5e..51eec509f 100644 --- a/clouds/snowflake/modules/test/h3/H3_BOUNDARY.test.js +++ b/clouds/snowflake/modules/test/h3/H3_BOUNDARY.test.js @@ -44,4 +44,4 @@ test('Returns the expected geography', async () => { expect(rows[2].EXPECTED).toEqual(rows[2].BOUNDS); expect(rows[3].EXPECTED).toEqual(rows[3].BOUNDS); expect(rows[4].EXPECTED).toEqual(rows[4].BOUNDS); -}); +}); \ No newline at end of file diff --git a/clouds/snowflake/modules/test/h3/H3_CENTER.test.js b/clouds/snowflake/modules/test/h3/H3_CENTER.test.js index 112bf6752..d62b98da1 100644 --- a/clouds/snowflake/modules/test/h3/H3_CENTER.test.js +++ b/clouds/snowflake/modules/test/h3/H3_CENTER.test.js @@ -35,4 +35,4 @@ test('Returns NULL the expected geography', async () => { const rows = await runQuery(query); expect(rows.length).toEqual(0); -}); +}); \ No newline at end of file diff --git a/clouds/snowflake/modules/test/h3/H3_FROMLONGLAT.spec.js b/clouds/snowflake/modules/test/h3/H3_FROMLONGLAT.spec.js index fee96aed9..817b7a401 100644 --- a/clouds/snowflake/modules/test/h3/H3_FROMLONGLAT.spec.js +++ b/clouds/snowflake/modules/test/h3/H3_FROMLONGLAT.spec.js @@ -35,4 +35,4 @@ test('H3_FROMLONGLAT returns the proper INT64', async () => { '85283473fffffff', '85283473fffffff' ]); -}); +}); \ No newline at end of file diff --git a/clouds/snowflake/modules/test/h3/H3_KRING.test.js b/clouds/snowflake/modules/test/h3/H3_KRING.test.js index a0ba65225..f9ae28878 100644 --- a/clouds/snowflake/modules/test/h3/H3_KRING.test.js +++ b/clouds/snowflake/modules/test/h3/H3_KRING.test.js @@ -52,4 +52,4 @@ test('H3_KRING should fail if any invalid argument', async () => { query = 'SELECT H3_KRING(\'8928308280fffff\', -1)'; await expect(runQuery(query)).rejects.toThrow(/Invalid input size/); -}); +}); \ No newline at end of file diff --git a/clouds/snowflake/modules/test/h3/H3_POLYFILL.test.js b/clouds/snowflake/modules/test/h3/H3_POLYFILL.test.js index 7dfe88e2f..4dc003718 100644 --- a/clouds/snowflake/modules/test/h3/H3_POLYFILL.test.js +++ b/clouds/snowflake/modules/test/h3/H3_POLYFILL.test.js @@ -42,7 +42,7 @@ test('H3_POLYFILL returns the proper INT64s', async () => { `; const rows = await runQuery(query); - // expect(rows.length).toEqual(18); + expect(rows.length).toEqual(18); expect(rows.map((r) => r.ID_COUNT)).toEqual([ 1253, 18, @@ -160,4 +160,4 @@ test('H3_POLYFILL returns the expected values', async () => { `; rows = await runQuery(query); expect(rows.length).toEqual(0); -}); +}); \ No newline at end of file diff --git a/clouds/snowflake/modules/test/h3/H3_RESOLUTION.test.js b/clouds/snowflake/modules/test/h3/H3_RESOLUTION.test.js index 6cb35b03a..8b725e406 100644 --- a/clouds/snowflake/modules/test/h3/H3_RESOLUTION.test.js +++ b/clouds/snowflake/modules/test/h3/H3_RESOLUTION.test.js @@ -36,4 +36,4 @@ test('Returns the expected resolution', async () => { const rows = await runQuery(query); expect(rows.length).toEqual(0); -}); +}); \ No newline at end of file diff --git a/clouds/snowflake/modules/test/h3/H3_TOCHILDREN.test.js b/clouds/snowflake/modules/test/h3/H3_TOCHILDREN.test.js index 11e44e495..ae0d17aa9 100644 --- a/clouds/snowflake/modules/test/h3/H3_TOCHILDREN.test.js +++ b/clouds/snowflake/modules/test/h3/H3_TOCHILDREN.test.js @@ -71,4 +71,4 @@ test('Coarser resolution returns empty array', async () => { const rows = await runQuery(query); expect(rows.length).toEqual(1); expect(rows[0].TOP_CHILDREN).toEqual([ ]); -}); +}); \ No newline at end of file