mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-31 01:25:38 -05:00
Add more smoke tests and abstract more code (#10799)
* add more smoke tests and abstract more code * fix missing imports
This commit is contained in:
@@ -9,10 +9,14 @@ export class QueryEditor {
|
||||
|
||||
public readonly commandBar: CommandBar;
|
||||
|
||||
constructor(code: Code) {
|
||||
constructor(private code: Code) {
|
||||
this.commandBar = new CommandBar(code);
|
||||
}
|
||||
|
||||
private static readonly RESULT_SELECTOR = '.query-editor-view .monaco-table';
|
||||
public async waitForResults(): Promise<void> {
|
||||
await this.code.waitForElement(QueryEditor.RESULT_SELECTOR);
|
||||
}
|
||||
}
|
||||
|
||||
export class CommandBar {
|
||||
|
||||
Reference in New Issue
Block a user