fix: User model tests by returning flow explicitly

This commit is contained in:
Faruk AYDIN
2025-03-10 16:13:52 +01:00
parent ac1f644071
commit 8246adec03

View File

@@ -680,7 +680,9 @@ class User extends Base {
name: 'Name your flow',
});
return await flow.createInitialSteps();
await flow.createInitialSteps();
return flow;
}
async $beforeInsert(queryContext) {