()
| 79 | export const slowStoragePlugin: Plugin = editor => { |
| 80 | editor.Storage.add('slow', { |
| 81 | async load() { |
| 82 | console.log('Waiting for the Storage'); |
| 83 | await new Promise(res => setTimeout(res, 3000)); |
| 84 | return { |
| 85 | pages: [{ component: '<h1>Content from the Storage</h1>' }] |
| 86 | }; |
| 87 | }, |
| 88 | async store() {} |
| 89 | }); |
| 90 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected