rewrite some automation; add notebook tests (#10853)

This commit is contained in:
Anthony Dresser
2020-06-11 13:17:10 -07:00
committed by GitHub
parent f862d77f34
commit 6b86cbdd6e
6 changed files with 57 additions and 13 deletions

View File

@@ -0,0 +1,15 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { Application } from '../../../../../automation';
export function setup() {
describe('Notebook', () => {
it('open ', async function () {
const app = this.app as Application;
await app.workbench.sqlNotebbok.openFile('hello.ipynb');
});
});
}