diff --git a/test/examples/globe_geojson_to3D.js b/test/examples/globe_geojson_to3D.js new file mode 100644 index 0000000000..82f0b8d51d --- /dev/null +++ b/test/examples/globe_geojson_to3D.js @@ -0,0 +1,14 @@ +/* global browser, itownsPort */ +const assert = require('assert'); + +describe('globe geojson to3D', () => { + it('should run', async function _() { + const page = await browser.newPage(); + const result = await loadExample(page, + `http://localhost:${itownsPort}/examples/globe_geojson_to3D.html`, + this.test.fullTitle()); + + assert.ok(result); + await page.close(); + }); +}); diff --git a/test/examples/globe_wfs_color.js b/test/examples/globe_wfs_color.js new file mode 100644 index 0000000000..2b2409df97 --- /dev/null +++ b/test/examples/globe_wfs_color.js @@ -0,0 +1,14 @@ +/* global browser, itownsPort */ +const assert = require('assert'); + +describe('globe_wfs_color', () => { + it('should run', async function _() { + const page = await browser.newPage(); + const result = await loadExample(page, + `http://localhost:${itownsPort}/examples/globe_wfs_color.html`, + this.test.fullTitle()); + + assert.ok(result); + await page.close(); + }); +});