Skip to content

Commit

Permalink
chore: fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
techfg committed Mar 13, 2024
1 parent 3d2a4c2 commit d3eb533
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/global.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ Shared resources, setup & teardown. This must be included for all tests.
*/

/* global iqtest */
/* exported image areas map_options u */

var image,
areas,
map_options,
map_copy,
u = iqtest.impl.utility; // eslint-disable-line no-unused-vars
u = iqtest.impl.utility;

$(document).ready(function () {
'use strict';
Expand All @@ -27,11 +28,10 @@ var group_setup = function () {
// always start with a clean map for each group
$('#usa_image').replaceWith(map_copy.clone());

image = $('#usa_image'); // eslint-disable-line no-unused-vars
areas = $('#usa_image_map'); // eslint-disable-line no-unused-vars
image = $('#usa_image');
areas = $('#usa_image_map');

// eslint-disable-next-line no-unused-vars
map_options = {
map_options = {
isSelectable: true,
singleSelect: false,
mapKey: 'state',
Expand Down

0 comments on commit d3eb533

Please sign in to comment.