> digiboxy-accounting-backend@1.0.0 test > cross-env NODE_ENV=test jest node.exe : (node:6396) [DEP0170] DeprecationWarning: The URL sqlite::memory: is invalid. Future versions of Node.js will throw an error. At C:\Program Files\nodejs\npm.ps1:29 char:3 + & $NODE_EXE $NPM_CLI_JS $args + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: ((node:639 6) [DE...throw an error.:String) [], RemoteExcepti on + FullyQualifiedErrorId : NativeCommandError (Use `node --trace-deprecation ...` to show where the warning was created) console.log ✓ Database connection has been established successfully. at log (src/config/database.js:55:13) console.error GraphQL Error: { message: 'Validation error', locations: [ { line: 3, column: 13 } ], path: [ 'createAccount' ], extensions: { code: 'INTERNAL_SERVER_ERROR' } }   22 | resolvers,  23 | formatError: (error) => { > 24 | console.error('GraphQL Error:', error);  | ^  25 | return {  26 | message: error.message,  27 | locations: error.locations, at error (src/server.js:24:13) at node_modules/@apollo/server/src/errorNormalize.ts:41:16 at Array.map () at normalizeAndFormatErrors (node_modules/@apollo/server/src/errorNormalize.ts:39:29) at formatErrors (node_modules/@apollo/server/src/requestPipeline.ts:688:36) at processGraphQLRequest (node_modules/@apollo/server/src/requestPipeline.ts:484:11) at internalExecuteOperation (node_modules/@apollo/server/src/ApolloServer.ts:1334:12) at runHttpQuery (node_modules/@apollo/server/src/runHttpQuery.ts:232:27) at runPotentiallyBatchedHttpQuery (node_modules/@apollo/server/src/httpBatching.ts:85:12) at ApolloServer.executeHTTPGraphQLRequest (node_modules/@apollo/server/src/ApolloServer.ts:1109:14) console.error [ { "message": "Validation error", "locations": [ { "line": 3, "column": 13 } ], "path": [ "createAccount" ] } ]   173 | });  174 | > 175 | if (res.body.errors) console.error(JSON.stringify(res.body.errors, null, 2));  | ^  176 |  177 | expect(res.body.data.createAccount).toBeDefined();  178 | expect(res.body.data.createAccount.code).toBe('1001'); at Object.error (src/tests/integration/multi-company.test.js:175:36) FAIL src/tests/integration/multi-company.test.js Multi-Company Integration √ Create Account in Company A (38 ms) √ Verify Account in Company A (25 ms) √ Verify Account NOT in Company B (14 ms) × Create Account in Company B (Same Code) (37 ms) ● Multi-Company Integration › Create Account in Company B (Same Code) TypeError: Cannot read properties of null (reading 'createAccount')   175 | if (res.body.errors) console.[39 merror(JSON.stringify(res.[39 mbody.errors, null, 2));  176 | > 177 | expect(r es.body.data.createAccoun t).toBeDefined();  | ^  178 | expect(res.body[ 33m.data.createAccount.code)[ 33m.toBe('1001');  179 | expect(res.body[ 33m.data.createAccount.nameId) .toBe('Kas B');  180 | }); at Object.createAccount (src/tests/integration/multi-company.test.js:177:28) Test Suites: 1 failed, 1 total Tests: 1 failed, 3 passed, 4 total Snapshots: 0 total Time: 3.862 s, estimated 5 s Ran all test suites.