Re-enable notebook smoke test and increase timeout (#13007)

This commit is contained in:
Lucy Zhang
2020-10-21 07:57:45 -07:00
committed by GitHub
parent 660c1d6f21
commit bed70ebd09
3 changed files with 3 additions and 3 deletions

View File

@@ -93,6 +93,6 @@ export class NotebookToolbar {
async waitForKernel(kernel: string): Promise<void> {
const kernelDropdownValue = `${NotebookToolbar.toolbarSelector} select[id="kernel-dropdown"][title="${kernel}"]`;
await this.code.waitForElement(kernelDropdownValue);
await this.code.waitForElement(kernelDropdownValue, undefined, 3000); // wait up to 5 minutes for kernel change
}
}