Initial commit: Inventory Barcode System

This commit is contained in:
2025-07-22 20:24:51 -04:00
commit 511b01748d
63 changed files with 26932 additions and 0 deletions

13
jest.config.js Normal file
View File

@ -0,0 +1,13 @@
module.exports = {
testEnvironment: 'node',
collectCoverageFrom: [
'models/**/*.js',
'services/**/*.js',
'routes/**/*.js',
'!**/node_modules/**'
],
testMatch: [
'**/__tests__/**/*.js',
'**/?(*.)+(spec|test).js'
]
};