Merge remote-tracking branch 'origin/dev' into feat/visual-programming-interface

# Conflicts:
#	package-lock.json
This commit is contained in:
JGerla
2025-10-22 11:44:10 +02:00
10 changed files with 4605 additions and 7 deletions

View File

@@ -5,7 +5,6 @@ commit_msg=$(cat "$commit_msg_file")
if echo "$commit_msg" | grep -Eq "^(feat|fix|refactor|perf|style|test|docs|build|chore|revert): .+"; then
if echo "$commit_msg" | grep -Eq "^(ref|close):\sN25B-.+"; then
echo "🎉 commit message is Valid"
exit 0
else
echo "❌ Commit message invalid! Must end with [ref/close]: N25B-000"

View File

@@ -9,7 +9,6 @@ fi
# allowed pattern <type/>
if echo "$branch" | grep -Eq "^(feat|fix|refactor|perf|style|test|docs|build|chore|revert)\/\w+(-\w+){0,5}$"; then
echo "✅ Branch name valid: $branch"
exit 0
else
echo "❌ Invalid branch name: $branch"

View File

@@ -37,7 +37,7 @@ git config --local core.hooksPath .githooks
```
If your commit fails its either:
branch name != <type>/description-of-branch
branch name != <type>/description-of-branch ,
commit name != <type>: description of the commit.
<ref>: N25B-Num's

14
jest.config.js Normal file
View File

@@ -0,0 +1,14 @@
export default {
preset: 'ts-jest/presets/default-esm',
testEnvironment: 'jsdom',
extensionsToTreatAsEsm: ['.ts', '.tsx'],
setupFilesAfterEnv: ['<rootDir>/test/setupTests.ts'],
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1',
'\\.(css|scss|sass)$': 'identity-obj-proxy'
},
testMatch: ['<rootDir>/test/*.test.(ts|tsx)'],
transform: {
'^.+\\.(ts|tsx)$': ['ts-jest', { useESM: true, tsconfig: 'tsconfig.jest.json' }]
}
};

4558
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -19,6 +19,10 @@
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
@@ -26,6 +30,10 @@
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"ts-jest": "^29.4.5",
"typescript": "~5.8.3",
"typescript-eslint": "^8.44.0",
"vite": "^7.1.7"

12
test/components.test.tsx Normal file
View File

@@ -0,0 +1,12 @@
import userEvent from '@testing-library/user-event';
import { render, screen} from '@testing-library/react';
import Counter from '../src/components/components';
describe('Counter component', () => {
test('increments count', async () => {
render(<Counter />);
const button = screen.getByRole('button', { name: /count is 0/i });
await userEvent.click(button);
expect(screen.getByText(/count is 1/i)).toBeInTheDocument();
});
});

2
test/setupTests.ts Normal file
View File

@@ -0,0 +1,2 @@
// Adds jest-dom matchers for React testing library
import '@testing-library/jest-dom';

View File

@@ -24,5 +24,5 @@
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src"]
"include": ["src","test"]
}

12
tsconfig.jest.json Normal file
View File

@@ -0,0 +1,12 @@
{
"extends": "./tsconfig.app.json",
"compilerOptions": {
"verbatimModuleSyntax": false,
"jsx": "react-jsx",
"module": "ESNext",
"target": "ES2022",
"allowJs": true,
"esModuleInterop": true
},
"include": ["test"]
}