Clean up unnecessary migration files and outdated documentation

This commit is contained in:
DaX
2025-07-21 12:10:45 +02:00
parent 9f01158241
commit 4020bb4ab8
9 changed files with 19 additions and 664 deletions

View File

@@ -3,4 +3,22 @@ import '@testing-library/jest-dom'
// Add TextEncoder/TextDecoder globals for Node.js environment
const { TextEncoder, TextDecoder } = require('util');
global.TextEncoder = TextEncoder;
global.TextDecoder = TextDecoder;
global.TextDecoder = TextDecoder;
// Mock axios globally
jest.mock('axios', () => ({
create: jest.fn(() => ({
get: jest.fn(),
post: jest.fn(),
put: jest.fn(),
delete: jest.fn(),
interceptors: {
request: {
use: jest.fn()
},
response: {
use: jest.fn()
}
}
}))
}))