fix: update ESLint configuration file extension and add Jest globals as a dev dependency

This commit is contained in:
Salman Muin Kayser Chishti 2025-10-14 18:25:23 +01:00
parent 0b341692b6
commit 006364163b
8 changed files with 976 additions and 314 deletions

View file

@ -16,9 +16,9 @@ let rcFile: string;
describe('authutil tests', () => {
const _runnerDir = path.join(__dirname, 'runner');
let cnSpy: any;
let logSpy: any;
let dbgSpy: any;
let cnSpy: ReturnType<typeof jest.spyOn>;
let logSpy: ReturnType<typeof jest.spyOn>;
let dbgSpy: ReturnType<typeof jest.spyOn>;
beforeAll(async () => {
const randPath = path.join(Math.random().toString(36).substring(7));