From 424ba0d9dec06b17741a8ac386e1ca77fc41a4d5 Mon Sep 17 00:00:00 2001 From: Anand Thakker Date: Wed, 25 Oct 2017 16:36:43 -0400 Subject: Add support for 'sleep' operation in render tests (#10282) Ports https://github.com/mapbox/mapbox-gl-js/commit/0069349550b263fdce9982d38183d9ab57ca7305 --- platform/node/test/suite_implementation.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/platform/node/test/suite_implementation.js b/platform/node/test/suite_implementation.js index 323f429bed..c5987538d0 100644 --- a/platform/node/test/suite_implementation.js +++ b/platform/node/test/suite_implementation.js @@ -90,6 +90,12 @@ module.exports = function (style, options, callback) { applyOperations(operations.slice(1), callback); }); + } else if (operation[0] === 'sleep') { + // Prefer "wait", which renders until the map is loaded + // Use "sleep" when you need to test something that sidesteps the "loaded" logic + setTimeout(() => { + applyOperations(operations.slice(1), callback); + }, operation[1]); } else if (operation[0] === 'addImage' || operation[0] === 'updateImage') { var img = PNG.sync.read(fs.readFileSync(path.join(__dirname, '../../../mapbox-gl-js/test/integration', operation[2]))); const testOpts = (operation.length > 3) ? operation[3] : {}; -- cgit v1.2.1