28 lines
654 B
JavaScript
28 lines
654 B
JavaScript
|
import fixture from './common/media_library';
|
||
|
import * as specUtils from './common/spec_utils';
|
||
|
import { entry1 } from './common/entries';
|
||
|
|
||
|
const backend = 'proxy';
|
||
|
|
||
|
describe('Proxy Backend Media Library - REST API', () => {
|
||
|
let taskResult = { data: {} };
|
||
|
|
||
|
before(() => {
|
||
|
specUtils.before(taskResult, { publish_mode: 'editorial_workflow' }, backend);
|
||
|
});
|
||
|
|
||
|
after(() => {
|
||
|
specUtils.after(taskResult, backend);
|
||
|
});
|
||
|
|
||
|
beforeEach(() => {
|
||
|
specUtils.beforeEach(taskResult, backend);
|
||
|
});
|
||
|
|
||
|
afterEach(() => {
|
||
|
specUtils.afterEach(taskResult, backend);
|
||
|
});
|
||
|
|
||
|
fixture({ entries: [entry1], getUser: () => taskResult.data.user });
|
||
|
});
|