mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Split up NotebookProvider into separate providers for handling file serialization and cell execution. (#17176)
This commit is contained in:
@@ -28,6 +28,7 @@ import { TestNotificationService } from 'vs/platform/notification/test/common/te
|
||||
import { TestTextResourcePropertiesService, TestWorkingCopyFileService } from 'vs/workbench/test/common/workbenchTestServices';
|
||||
import { UriIdentityService } from 'vs/workbench/services/uriIdentity/common/uriIdentityService';
|
||||
import { IClipboardService } from 'vs/platform/clipboard/common/clipboardService';
|
||||
import { INotebookService } from 'sql/workbench/services/notebook/browser/notebookService';
|
||||
|
||||
suite('MainThreadDocumentsAndEditors', () => {
|
||||
|
||||
@@ -100,7 +101,10 @@ suite('MainThreadDocumentsAndEditors', () => {
|
||||
return Promise.resolve('clipboard_contents');
|
||||
}
|
||||
},
|
||||
new TestPathService()
|
||||
new TestPathService(),
|
||||
<INotebookService>{ // {{SQL CARBON EDIT}}
|
||||
getSupportedFileExtensions: () => ['ipynb']
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user