Level 53
It seems like there is no official way to achieve this: https://github.com/cypress-io/cypress/issues/1417
But there are some 3rd party packages like https://www.npmjs.com/package/cypress-thenify :
it('can see its projects', () => {
let user = cy.login().thenify();
let project = cy.create('App\Models\Project', { user_id: user.id }).thenify();
cy.visit('/home').contains(project.name);
})