diff options
Diffstat (limited to 'platform/node/test/render.test.js')
-rw-r--r-- | platform/node/test/render.test.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/platform/node/test/render.test.js b/platform/node/test/render.test.js index e2e13534c9..c8a214e919 100644 --- a/platform/node/test/render.test.js +++ b/platform/node/test/render.test.js @@ -1,12 +1,13 @@ 'use strict'; -var suite = require('../../../mapbox-gl-js/test/integration').render; -var suiteImplementation = require('./suite_implementation'); +const suite = require('../../../mapbox-gl-js/test/integration').render; +const suiteImplementation = require('./suite_implementation'); +const ignores = require('./ignores.json'); -var tests; +let tests; if (process.argv[1] === __filename && process.argv.length > 2) { tests = process.argv.slice(2); } -suite.run('native', {tests: tests}, suiteImplementation); +suite.run('native', {tests: tests, ignores: ignores}, suiteImplementation); |