2.0.0
- Increase PHP minimum to 8.0.
- Remove support for Laravel's legacy factories.
- Optional new object-based API for
cy.create()andcy.login()that allows for relationship loading and declaring model factory states.
test('it shows blog posts', () => {
cy.create({
model: 'App\\Post',
attributes: { title: 'My First Post' },
state: ['archived'],
load: ['author'],
count: 10
})
});--
Upgrade Notes
If upgrading from version 1, be sure to manually update your cypress/support/laravel-commands.js file to match this one.