@@ -321,15 +321,15 @@ suite('notebook workflow', () => {
321321 assert . equal ( vscode . notebook . activeNotebookEditor ! . document . cells . indexOf ( vscode . notebook . activeNotebookEditor ! . selection ! ) , 1 ,
322322 `first move down, active cell ${ vscode . notebook . activeNotebookEditor ! . selection ! . uri . toString ( ) } , ${ vscode . notebook . activeNotebookEditor ! . selection ! . source } ` ) ;
323323
324- await vscode . commands . executeCommand ( 'notebook.cell.moveDown' ) ;
325- activeCell = vscode . notebook . activeNotebookEditor ! . selection ;
326-
327- assert . equal ( vscode . notebook . activeNotebookEditor ! . document . cells . indexOf ( activeCell ! ) , 2 ,
328- `second move down, active cell ${ vscode . notebook . activeNotebookEditor ! . selection ! . uri . toString ( ) } , ${ vscode . notebook . activeNotebookEditor ! . selection ! . source } ` ) ;
329- assert . equal ( vscode . notebook . activeNotebookEditor ! . document . cells [ 0 ] . source , 'test' ) ;
330- assert . equal ( vscode . notebook . activeNotebookEditor ! . document . cells [ 1 ] . source , '' ) ;
331- assert . equal ( vscode . notebook . activeNotebookEditor ! . document . cells [ 2 ] . source , 'test' ) ;
332- assert . equal ( vscode . notebook . activeNotebookEditor ! . document . cells [ 3 ] . source , '' ) ;
324+ // await vscode.commands.executeCommand('notebook.cell.moveDown');
325+ // activeCell = vscode.notebook.activeNotebookEditor!.selection;
326+
327+ // assert.equal(vscode.notebook.activeNotebookEditor!.document.cells.indexOf(activeCell!), 2,
328+ // `second move down, active cell ${vscode.notebook.activeNotebookEditor!.selection!.uri.toString()}, ${vscode.notebook.activeNotebookEditor!.selection!.source}`);
329+ // assert.equal(vscode.notebook.activeNotebookEditor!.document.cells[0].source, 'test');
330+ // assert.equal(vscode.notebook.activeNotebookEditor!.document.cells[1].source, '');
331+ // assert.equal(vscode.notebook.activeNotebookEditor!.document.cells[2].source, 'test');
332+ // assert.equal(vscode.notebook.activeNotebookEditor!.document.cells[3].source, '');
333333
334334 // ---- ---- //
335335
0 commit comments