mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
14 lines
249 B
TypeScript
14 lines
249 B
TypeScript
|
export const mockScope = () => ({
|
||
|
settings: {
|
||
|
syntaxValidation: false,
|
||
|
pdfViewer: 'pdfjs',
|
||
|
},
|
||
|
editor: {
|
||
|
sharejs_doc: {
|
||
|
doc_id: 'test-doc',
|
||
|
getSnapshot: () => 'some doc content',
|
||
|
},
|
||
|
},
|
||
|
hasLintingError: false,
|
||
|
})
|