Revert "Re-enable additional notebook smoke tests"

This reverts commit b3b9d4e2e7.
This commit is contained in:
Rob Lourens 2021-12-13 09:18:17 -08:00
parent 8605d7aeff
commit 7e4942dcb7

View file

@ -25,7 +25,7 @@ export function setup(logger: Logger) {
cp.execSync('git reset --hard HEAD --quiet', { cwd: app.workspacePathOrFolder });
});
it('inserts/edits code cell', async function () {
it.skip('inserts/edits code cell', async function () {
const app = this.app as Application;
await app.workbench.notebook.openNotebook();
await app.workbench.notebook.focusNextCell();
@ -54,7 +54,7 @@ export function setup(logger: Logger) {
await app.workbench.notebook.waitForMarkdownContents('p', 'Markdown Cell');
});
it('moves focus in and out of output', async function () { // TODO@rebornix https://github.com/microsoft/vscode/issues/113882
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();
@ -63,7 +63,7 @@ export function setup(logger: Logger) {
await app.workbench.notebook.waitForActiveCellEditorContents('code()');
});
it('cell action execution', async function () {
it.skip('cell action execution', async function () {
const app = this.app as Application;
await app.workbench.notebook.openNotebook();
await app.workbench.notebook.insertNotebookCell('code');