We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6486bc3 commit c90e90dCopy full SHA for c90e90d
1 file changed
packages/metaschema-modules/__tests__/modules.test.ts
@@ -193,6 +193,8 @@ describe('db_meta_modules', () => {
193
});
194
195
it('should verify module tables have proper foreign key relationships', async () => {
196
+ // Increase timeout for this test as the FK query can be slow
197
+ jest.setTimeout(30000);
198
// Get all foreign key constraints for module tables
199
const fkConstraints = await pg.any(`
200
SELECT
@@ -339,4 +341,4 @@ describe('db_meta_modules', () => {
339
341
340
342
expect(snapshot({ columns })).toMatchSnapshot();
343
-});
344
+});
0 commit comments