@@ -25,7 +25,7 @@ export function setup(logger: Logger) {
25
25
cp . execSync ( 'git reset --hard HEAD --quiet' , { cwd : app . workspacePathOrFolder } ) ;
26
26
} ) ;
27
27
28
- it . skip ( 'inserts/edits code cell' , async function ( ) {
28
+ it ( 'inserts/edits code cell' , async function ( ) {
29
29
const app = this . app as Application ;
30
30
await app . workbench . notebook . openNotebook ( ) ;
31
31
await app . workbench . notebook . focusNextCell ( ) ;
@@ -54,7 +54,7 @@ export function setup(logger: Logger) {
54
54
await app . workbench . notebook . waitForMarkdownContents ( 'p' , 'Markdown Cell' ) ;
55
55
} ) ;
56
56
57
- it . skip ( 'moves focus in and out of output' , async function ( ) { // TODO@rebornix https://github.com/microsoft/vscode/issues/113882
57
+ it ( 'moves focus in and out of output' , async function ( ) { // TODO@rebornix https://github.com/microsoft/vscode/issues/113882
58
58
const app = this . app as Application ;
59
59
await app . workbench . notebook . openNotebook ( ) ;
60
60
await app . workbench . notebook . executeActiveCell ( ) ;
@@ -63,7 +63,7 @@ export function setup(logger: Logger) {
63
63
await app . workbench . notebook . waitForActiveCellEditorContents ( 'code()' ) ;
64
64
} ) ;
65
65
66
- it . skip ( 'cell action execution' , async function ( ) {
66
+ it ( 'cell action execution' , async function ( ) {
67
67
const app = this . app as Application ;
68
68
await app . workbench . notebook . openNotebook ( ) ;
69
69
await app . workbench . notebook . insertNotebookCell ( 'code' ) ;
0 commit comments