summaryrefslogtreecommitdiff
path: root/platform/node/test/render.test.js
blob: c8a214e919aad234fb4e10cab87c73d71aba024d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict';

const suite = require('../../../mapbox-gl-js/test/integration').render;
const suiteImplementation = require('./suite_implementation');
const ignores = require('./ignores.json');

let tests;

if (process.argv[1] === __filename && process.argv.length > 2) {
    tests = process.argv.slice(2);
}

suite.run('native', {tests: tests, ignores: ignores}, suiteImplementation);