@@ -9,7 +9,7 @@ import { Application } from '../../../../automation';
9
9
import { afterSuite , beforeSuite } from '../../utils' ;
10
10
11
11
export function setup ( opts : minimist . ParsedArgs ) {
12
- describe . skip ( 'Notebooks' , ( ) => {
12
+ describe ( 'Notebooks' , ( ) => {
13
13
beforeSuite ( opts ) ;
14
14
15
15
afterEach ( async function ( ) {
@@ -26,7 +26,7 @@ export function setup(opts: minimist.ParsedArgs) {
26
26
27
27
afterSuite ( opts ) ;
28
28
29
- it . skip ( 'inserts/edits code cell' , async function ( ) {
29
+ it ( 'inserts/edits code cell' , async function ( ) {
30
30
const app = this . app as Application ;
31
31
await app . workbench . notebook . openNotebook ( ) ;
32
32
await app . workbench . notebook . focusNextCell ( ) ;
@@ -35,7 +35,7 @@ export function setup(opts: minimist.ParsedArgs) {
35
35
await app . workbench . notebook . stopEditingCell ( ) ;
36
36
} ) ;
37
37
38
- it . skip ( 'inserts/edits markdown cell' , async function ( ) {
38
+ it ( 'inserts/edits markdown cell' , async function ( ) {
39
39
const app = this . app as Application ;
40
40
await app . workbench . notebook . openNotebook ( ) ;
41
41
await app . workbench . notebook . focusNextCell ( ) ;
@@ -45,7 +45,7 @@ export function setup(opts: minimist.ParsedArgs) {
45
45
await app . workbench . notebook . waitForMarkdownContents ( 'h2' , 'hello2!' ) ;
46
46
} ) ;
47
47
48
- it . skip ( 'moves focus as it inserts/deletes a cell' , async function ( ) {
48
+ it ( 'moves focus as it inserts/deletes a cell' , async function ( ) {
49
49
const app = this . app as Application ;
50
50
await app . workbench . notebook . openNotebook ( ) ;
51
51
await app . workbench . notebook . insertNotebookCell ( 'code' ) ;
@@ -55,7 +55,7 @@ export function setup(opts: minimist.ParsedArgs) {
55
55
await app . workbench . notebook . waitForMarkdownContents ( 'p' , 'Markdown Cell' ) ;
56
56
} ) ;
57
57
58
- it . skip ( 'moves focus in and out of output' , async function ( ) { // TODO@rebornix https://github.com/microsoft/vscode/issues/113882
58
+ it ( 'moves focus in and out of output' , async function ( ) { // TODO@rebornix https://github.com/microsoft/vscode/issues/113882
59
59
const app = this . app as Application ;
60
60
await app . workbench . notebook . openNotebook ( ) ;
61
61
await app . workbench . notebook . executeActiveCell ( ) ;
@@ -64,7 +64,7 @@ export function setup(opts: minimist.ParsedArgs) {
64
64
await app . workbench . notebook . waitForActiveCellEditorContents ( 'code()' ) ;
65
65
} ) ;
66
66
67
- it . skip ( 'cell action execution' , async function ( ) {
67
+ it ( 'cell action execution' , async function ( ) {
68
68
const app = this . app as Application ;
69
69
await app . workbench . notebook . openNotebook ( ) ;
70
70
await app . workbench . notebook . insertNotebookCell ( 'code' ) ;
0 commit comments