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

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