@@ -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 ( 'check heap leaks' , async function ( ) {
28
+ it ( 'check heap leaks' , async function ( ) {
29
29
const app = this . app as Application ;
30
30
await app . profiler . checkHeapLeaks ( [ 'NotebookTextModel' , 'NotebookCellTextModel' , 'NotebookEventDispatcher' ] , async ( ) => {
31
31
await app . workbench . notebook . openNotebook ( ) ;
@@ -34,7 +34,7 @@ export function setup(logger: Logger) {
34
34
} ) ;
35
35
} ) ;
36
36
37
- it . skip ( 'check object leaks' , async function ( ) {
37
+ it ( 'check object leaks' , async function ( ) {
38
38
const app = this . app as Application ;
39
39
await app . profiler . checkObjectLeaks ( [ 'NotebookTextModel' , 'NotebookCellTextModel' , 'NotebookEventDispatcher' ] , async ( ) => {
40
40
await app . workbench . notebook . openNotebook ( ) ;
@@ -43,7 +43,7 @@ export function setup(logger: Logger) {
43
43
} ) ;
44
44
} ) ;
45
45
46
- it . skip ( 'inserts/edits code cell' , async function ( ) {
46
+ it ( 'inserts/edits code cell' , async function ( ) {
47
47
const app = this . app as Application ;
48
48
await app . workbench . notebook . openNotebook ( ) ;
49
49
await app . workbench . notebook . focusNextCell ( ) ;
@@ -52,7 +52,7 @@ export function setup(logger: Logger) {
52
52
await app . workbench . notebook . stopEditingCell ( ) ;
53
53
} ) ;
54
54
55
- it . skip ( 'inserts/edits markdown cell' , async function ( ) {
55
+ it ( 'inserts/edits markdown cell' , async function ( ) {
56
56
const app = this . app as Application ;
57
57
await app . workbench . notebook . openNotebook ( ) ;
58
58
await app . workbench . notebook . focusNextCell ( ) ;
@@ -62,7 +62,7 @@ export function setup(logger: Logger) {
62
62
await app . workbench . notebook . waitForMarkdownContents ( 'h2' , 'hello2!' ) ;
63
63
} ) ;
64
64
65
- it . skip ( 'moves focus as it inserts/deletes a cell' , async function ( ) {
65
+ it ( 'moves focus as it inserts/deletes a cell' , async function ( ) {
66
66
const app = this . app as Application ;
67
67
await app . workbench . notebook . openNotebook ( ) ;
68
68
await app . workbench . notebook . insertNotebookCell ( 'code' ) ;
@@ -72,7 +72,7 @@ export function setup(logger: Logger) {
72
72
await app . workbench . notebook . waitForMarkdownContents ( 'p' , 'Markdown Cell' ) ;
73
73
} ) ;
74
74
75
- it . skip ( 'moves focus in and out of output' , async function ( ) { // TODO@rebornix https://github.com/microsoft/vscode/issues/139270
75
+ it ( 'moves focus in and out of output' , async function ( ) { // TODO@rebornix https://github.com/microsoft/vscode/issues/139270
76
76
const app = this . app as Application ;
77
77
await app . workbench . notebook . openNotebook ( ) ;
78
78
await app . workbench . notebook . executeActiveCell ( ) ;
@@ -81,7 +81,7 @@ export function setup(logger: Logger) {
81
81
await app . workbench . notebook . waitForActiveCellEditorContents ( 'code()' ) ;
82
82
} ) ;
83
83
84
- it . skip ( 'cell action execution' , async function ( ) { // TODO@rebornix https://github.com/microsoft/vscode/issues/139270
84
+ it ( 'cell action execution' , async function ( ) { // TODO@rebornix https://github.com/microsoft/vscode/issues/139270
85
85
const app = this . app as Application ;
86
86
await app . workbench . notebook . openNotebook ( ) ;
87
87
await app . workbench . notebook . insertNotebookCell ( 'code' ) ;
0 commit comments