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

var suite = require('../../../mapbox-gl-js/test/integration').query;
var suiteImplementation = require('./suite_implementation');

var tests;

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

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