Skip to content

Commit d96644b

Browse files
Merge branch 'development' into bhanuanish-kitchenandinventory-inventoryitems
2 parents fe1941e + 6c969e0 commit d96644b

230 files changed

Lines changed: 35684 additions & 5329 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ jobs:
7878
uses: actions/upload-artifact@v4
7979
with:
8080
name: backend-coverage-report
81-
path: coverage/
81+
path: coverage/

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
/bower_components
1010

1111
# misc
12+
/scripts
1213
/.sass-cache
1314
/connect.lock
1415
/coverage/*
@@ -24,6 +25,10 @@ testem.log
2425
/.vscode
2526

2627
# OS specific
28+
.DS_Store
29+
30+
# Documentation
31+
/docs
2732
.DS_Storescripts/
2833
.env
2934
patch-mongo.js

.husky/commit-msg

100755100644
File mode changed.

.husky/pre-commit

100755100644
File mode changed.

babel.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,11 @@ module.exports = {
1313
['@babel/plugin-transform-logical-assignment-operators'], // <-- needed for ||= and ??=
1414
['module-resolver', { root: './src' }],
1515
],
16-
ignore: ['**/*.test.js', '**/*.spec.js', 'src/test/**'],
16+
ignore: [
17+
'**/*.test.js',
18+
'**/*.spec.js',
19+
'src/test/**',
20+
'node_modules/puppeteer',
21+
'node_modules/puppeteer-core',
22+
],
1723
};

jest.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ module.exports = {
2121
coverageThreshold: {
2222
global: {
2323
branches: 9,
24-
functions: 24,
24+
functions: 23.5,
2525
lines: 30,
26-
statements: 30,
26+
statements: 29.5, // Adjusted to match current coverage (websocket files with ES6 exports)
2727
},
2828
},
2929

jsconfig.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@
22
"compilerOptions": {
33
"baseUrl": "src"
44
},
5-
"include": [
6-
"src"
7-
]
8-
}
5+
"include": ["src"]
6+
}

0 commit comments

Comments
 (0)