Removed unused imports

This commit is contained in:
alexjanousekGSA
2025-06-16 19:42:08 -04:00
parent a57811a8a8
commit 468216fdf9
2 changed files with 2 additions and 8 deletions

View File

@@ -1,16 +1,13 @@
const fs = require('fs');
const path = require('path');
// Polyfill holes in JSDOM
require('./polyfills.js');
// Set up jQuery
global.$ = global.jQuery = require('jquery');
// tests/jest.setup.js
global.io = jest.fn().mockReturnValue({
on: jest.fn(),
emit: jest.fn()
on: jest.fn(),
emit: jest.fn(),
});
// Load module code

View File

@@ -1,9 +1,6 @@
const fs = require('fs');
const path = require('path');
// Polyfill holes in JSDOM
require('./polyfills.js');
// Set up jQuery
global.$ = global.jQuery = require('jquery');