chore: add tm-core package with tag and tasks.json

This commit is contained in:
Ralph Khreish
2025-08-06 20:09:29 +02:00
parent df26c65632
commit aee1996dc2
37 changed files with 11766 additions and 12 deletions

View File

@@ -0,0 +1,22 @@
/**
* Jest setup file for tm-core package
* This file is executed before running tests and can be used to configure
* testing utilities, global mocks, and test environment setup.
*/
// Configure test environment
process.env.NODE_ENV = 'test';
// Global test utilities can be added here
// Custom matchers and global types can be defined here in the future
// Set up any global mocks or configurations here
beforeEach(() => {
// Reset any global state before each test
jest.clearAllMocks();
});
afterEach(() => {
// Clean up after each test
jest.restoreAllMocks();
});