799c7e6936
Co-authored-by: Denys Konovalov <kontakt@denyskon.de> Co-authored-by: Mathieu COSYNS <64072917+Mathieu-COSYNS@users.noreply.github.com>
22 lines
405 B
JavaScript
22 lines
405 B
JavaScript
import fixture from '../common/media_library';
|
|
|
|
const entries = [
|
|
{
|
|
Title: 'first title',
|
|
Body: 'first body',
|
|
},
|
|
];
|
|
|
|
describe('Test Backend Media Library', () => {
|
|
after(() => {
|
|
cy.task('teardownBackend', { backend: 'test' });
|
|
});
|
|
|
|
before(() => {
|
|
Cypress.config('defaultCommandTimeout', 4000);
|
|
cy.task('setupBackend', { backend: 'test' });
|
|
});
|
|
|
|
fixture({ entries });
|
|
});
|