Skip to content

Commit 43a1026

Browse files
committed
Comment out part of test - see microsoft#101462
1 parent ef903c7 commit 43a1026

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

extensions/vscode-notebook-tests/src/notebook.test.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -812,10 +812,11 @@ suite('metadata', () => {
812812
assert.equal(vscode.notebook.activeNotebookEditor!.selection?.metadata.custom!['testCellMetadata'] as number, 123);
813813
assert.equal(vscode.notebook.activeNotebookEditor!.selection?.language, 'typescript');
814814

815-
await vscode.commands.executeCommand('notebook.cell.copyDown');
816-
const activeCell = vscode.notebook.activeNotebookEditor!.selection;
817-
assert.equal(vscode.notebook.activeNotebookEditor!.document.cells.indexOf(activeCell!), 1);
818-
assert.equal(activeCell?.metadata.custom!['testCellMetadata'] as number, 123);
815+
// TODO see #101462
816+
// await vscode.commands.executeCommand('notebook.cell.copyDown');
817+
// const activeCell = vscode.notebook.activeNotebookEditor!.selection;
818+
// assert.equal(vscode.notebook.activeNotebookEditor!.document.cells.indexOf(activeCell!), 1);
819+
// assert.equal(activeCell?.metadata.custom!['testCellMetadata'] as number, 123);
819820

820821
await vscode.commands.executeCommand('workbench.action.files.saveAll');
821822
await vscode.commands.executeCommand('workbench.action.closeAllEditors');

0 commit comments

Comments
 (0)