Remove unused vars

This commit is contained in:
Daniel García Aubert 2019-10-25 10:58:00 +02:00
parent 3bc3d19f40
commit 8fbe8f9f2a
5 changed files with 12 additions and 17 deletions

View File

@ -59,14 +59,13 @@ describe('analyses controller', function () {
assert.ok(result);
let didRunJsonCallback = false;
// jshint ignore:start
/* eslint-disable no-unused-vars, no-eval */
function jsonp_test (body) {
assert.ok(Array.isArray(body.catalog));
didRunJsonCallback = true;
}
eval(result);
// jshint ignore:end
/* eslint-enable */
assert.ok(didRunJsonCallback);

View File

@ -48,12 +48,6 @@ describe('CartoCSS wrap', function () {
]
};
var keysToDelete;
beforeEach(function () {
keysToDelete = {};
});
afterEach(function (done) {
if (this.testClient) {
this.testClient.drain(done);

View File

@ -405,7 +405,7 @@ describe('multilayer', function () {
assert.strictEqual(res.statusCode, 200, res.body);
var didRunJsonCallback = false;
// jshint ignore:start
/* eslint-disable no-unused-vars, no-eval */
function jsonp_test (body) {
assert.ok(body.layergroupid);
expected_token = LayergroupToken.parse(body.layergroupid).token;
@ -417,7 +417,7 @@ describe('multilayer', function () {
didRunJsonCallback = true;
}
eval(res.body);
// jshint ignore:end
/* eslint-enable */
assert.ok(didRunJsonCallback);
// TODO: check caching headers !

View File

@ -72,13 +72,13 @@ describe('server', function () {
assert.deepStrictEqual(res.headers['content-type'], 'text/javascript; charset=utf-8');
var didRunJsonCallback = false;
var response = {};
// jshint ignore:start
/* eslint-disable no-unused-vars, no-eval */
function jsonp_test (body) {
response = body;
didRunJsonCallback = true;
}
eval(res.body);
// jshint ignore:end
/* eslint-enable */
assert.ok(didRunJsonCallback);
assert.utfgridEqualsFile(response, './test/fixtures/test_table_13_4011_3088.grid.json', 2, done);
});

View File

@ -1382,12 +1382,13 @@ describe('template_api', function () {
].join(' ');
helper.checkSurrogateKey(res, expectedSurrogateKey);
// jshint ignore:start
/* eslint-disable no-unused-vars, no-eval */
function json_test (body) {
keysToDelete['map_cfg|' + LayergroupToken.parse(body.layergroupid).token] = 0;
}
eval(res.body);
// jshint ignore:end
/* eslint-enable */
keysToDelete['map_tpl|localhost'] = 0;
keysToDelete['user:localhost:mapviews:global'] = 5;
@ -1467,12 +1468,13 @@ describe('template_api', function () {
].join(' ');
helper.checkSurrogateKey(res, expectedSurrogateKey);
// jshint ignore:start
/* eslint-disable no-unused-vars, no-eval */
function json_test (body) {
keysToDelete['map_cfg|' + LayergroupToken.parse(body.layergroupid).token] = 0;
}
eval(res.body);
// jshint ignore:end
/* eslint-enable */
keysToDelete['map_tpl|localhost'] = 0;
keysToDelete['user:localhost:mapviews:global'] = 5;