mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Add Remote Book dialog smoke test (#15932)
* Add Remote Book smoke test * fixes * distro * Try closing toasts (cherry picked from commit fd53c91375f4ba73554c801be3378375b2521d31)
This commit is contained in:
@@ -30,6 +30,7 @@ import { Notebook as SqlNotebook } from './sql/notebook';
|
||||
import { ConfigurePythonDialog } from './sql/configurePythonDialog';
|
||||
import { CreateBookDialog } from './sql/createBookDialog';
|
||||
import { NotificationToast } from './sql/notificationToast';
|
||||
import { AddRemoteBookDialog } from './sql/addRemoteBookDialog';
|
||||
// {{END}}
|
||||
|
||||
export interface Commands {
|
||||
@@ -64,6 +65,7 @@ export class Workbench {
|
||||
readonly createBookDialog: CreateBookDialog;
|
||||
readonly configurePythonDialog: ConfigurePythonDialog;
|
||||
readonly notificationToast: NotificationToast;
|
||||
readonly addRemoteBookDialog: AddRemoteBookDialog;
|
||||
// {{END}}
|
||||
|
||||
constructor(code: Code, userDataPath: string) {
|
||||
@@ -91,6 +93,7 @@ export class Workbench {
|
||||
this.sqlNotebook = new SqlNotebook(code, this.quickaccess, this.quickinput, this.editors);
|
||||
this.createBookDialog = new CreateBookDialog(code);
|
||||
this.configurePythonDialog = new ConfigurePythonDialog(code);
|
||||
this.addRemoteBookDialog = new AddRemoteBookDialog(code);
|
||||
// {{END}}
|
||||
this.notebook = new Notebook(this.quickaccess, code);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user