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

const suite = require('../../../mapbox-gl-js/test/integration').query;
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);