File tree Expand file tree Collapse file tree
extensions/vscode-notebook-tests/src Expand file tree Collapse file tree Original file line number Diff line number Diff 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' ) ;
You can’t perform that action at this time.
0 commit comments