52 lines
1.0 KiB
JavaScript
Raw Normal View History

const bootstrap = require('../../config/functions/bootstrap');
describe('Upload plugin bootstrap function', () => {
test('Sets default config if id does not exist', async () => {
const setStore = jest.fn(() => {});
const register = jest.fn(() => {});
global.strapi = {
dir: process.cwd(),
admin: {
services: { permission: { actionProvider: { register } } },
},
log: {
error() {},
},
config: {
get() {
return 'public';
},
paths: {},
info: {
dependencies: {},
},
},
plugins: {
upload: {
config: {
provider: 'local',
},
},
},
store() {
return {
get() {
return null;
},
set: setStore,
};
},
};
await bootstrap();
expect(setStore).toHaveBeenCalledWith({
value: {
sizeOptimization: true,
responsiveDimensions: true,
},
});
});
});