mirror of
https://github.com/coder/code-server.git
synced 2026-05-27 07:29:34 +00:00
75 lines
3.3 KiB
TypeScript
75 lines
3.3 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as cp from 'child_process';
|
|
import { Application } from '../../../../automation';
|
|
|
|
// function wait(ms: number): Promise<void> {
|
|
// return new Promise(r => setTimeout(r, ms));
|
|
// }
|
|
|
|
|
|
export function setup() {
|
|
describe('Notebooks', () => {
|
|
after(async function () {
|
|
const app = this.app as Application;
|
|
cp.execSync('git checkout . --quiet', { cwd: app.workspacePathOrFolder });
|
|
cp.execSync('git reset --hard HEAD --quiet', { cwd: app.workspacePathOrFolder });
|
|
});
|
|
|
|
afterEach(async function () {
|
|
const app = this.app as Application;
|
|
await app.workbench.quickaccess.runCommand('workbench.action.files.save');
|
|
await app.workbench.quickaccess.runCommand('workbench.action.closeActiveEditor');
|
|
});
|
|
|
|
// it('inserts/edits code cell', async function () {
|
|
// const app = this.app as Application;
|
|
// await app.workbench.notebook.openNotebook();
|
|
// await app.workbench.notebook.focusNextCell();
|
|
// await app.workbench.notebook.insertNotebookCell('code');
|
|
// await app.workbench.notebook.waitForTypeInEditor('// some code');
|
|
// await app.workbench.notebook.stopEditingCell();
|
|
// });
|
|
|
|
// it('inserts/edits markdown cell', async function () {
|
|
// const app = this.app as Application;
|
|
// await app.workbench.notebook.openNotebook();
|
|
// await app.workbench.notebook.focusNextCell();
|
|
// await app.workbench.notebook.insertNotebookCell('markdown');
|
|
// await app.workbench.notebook.waitForTypeInEditor('## hello2! ');
|
|
// await app.workbench.notebook.stopEditingCell();
|
|
// await app.workbench.notebook.waitForMarkdownContents('h2', 'hello2!');
|
|
// });
|
|
|
|
// it('moves focus as it inserts/deletes a cell', async function () {
|
|
// const app = this.app as Application;
|
|
// await app.workbench.notebook.openNotebook();
|
|
// await app.workbench.notebook.insertNotebookCell('code');
|
|
// await app.workbench.notebook.waitForActiveCellEditorContents('');
|
|
// await app.workbench.notebook.stopEditingCell();
|
|
// await app.workbench.notebook.deleteActiveCell();
|
|
// await app.workbench.notebook.waitForMarkdownContents('p', 'Markdown Cell');
|
|
// });
|
|
|
|
it.skip('moves focus in and out of output', async function () { // TODO@rebornix https://github.com/microsoft/vscode/issues/113882
|
|
const app = this.app as Application;
|
|
await app.workbench.notebook.openNotebook();
|
|
await app.workbench.notebook.executeActiveCell();
|
|
await app.workbench.notebook.focusInCellOutput();
|
|
await app.workbench.notebook.focusOutCellOutput();
|
|
await app.workbench.notebook.waitForActiveCellEditorContents('code()');
|
|
});
|
|
|
|
it.skip('cell action execution', async function () {
|
|
const app = this.app as Application;
|
|
await app.workbench.notebook.openNotebook();
|
|
await app.workbench.notebook.insertNotebookCell('code');
|
|
await app.workbench.notebook.executeCellAction('.notebook-editor .monaco-list-row.focused div.monaco-toolbar .codicon-debug');
|
|
await app.workbench.notebook.waitForActiveCellEditorContents('test');
|
|
});
|
|
});
|
|
}
|