mirror of
https://github.com/maputnik/editor.git
synced 2026-02-06 12:40:00 +00:00
* Initial commit * Fix spec * Move driver * Fix config location * Fix helper location * More usage of driver * Add click * Fix click * Migrate more tests * Add setValue to driver * Move more code to driver * add isExisting to driver * Change modal tests to use driver * Fix tests * Fix test * Fix invalid alert wait * Fix missing wd * Fix tests * Fix missing fs * Fix test * Fix path * Move screenshort to driver * Migrate keyboard * Migrate skiplinks to driver * Fix tests * Try fix skip-links * add config * Add helper * Fix driver? * remove helper * remove wd-helper * Remove redundant file * Remove webdriver extsions
36 lines
785 B
JavaScript
36 lines
785 B
JavaScript
var driver = require("./driver");
|
|
|
|
describe('maputnik', function() {
|
|
|
|
before(async function(done) {
|
|
await browser.setTimeout({ 'script': 20 * 1000 });
|
|
await browser.setTimeout({ 'implicit': 20 * 1000 });
|
|
driver.geoserver.start(done);
|
|
});
|
|
|
|
after(function(done) {
|
|
driver.geoserver.stop(done);
|
|
});
|
|
|
|
beforeEach(async function() {
|
|
await driver.setStyle(["geojson:example","raster:raster"]);
|
|
await driver.setSurvey();
|
|
});
|
|
|
|
// -------- setup --------
|
|
require("./util/coverage");
|
|
// -----------------------
|
|
|
|
// ---- All the tests ----
|
|
require("./history");
|
|
require("./layers");
|
|
require("./map");
|
|
require("./modals");
|
|
require("./screenshots");
|
|
require("./accessibility");
|
|
require("./keyboard");
|
|
// ------------------------
|
|
|
|
});
|
|
|