mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-29 01:25:37 -05:00
rewrite some automation; add notebook tests (#10853)
This commit is contained in:
15
test/smoke/src/sql/areas/notebook/notebook.test.ts
Normal file
15
test/smoke/src/sql/areas/notebook/notebook.test.ts
Normal 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');
|
||||
});
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user