mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 09:08:53 +01:00
Enable ipynb serializer tests in web integration tests
and reenable NotebookSerializer test in non-web
This commit is contained in:
@@ -7,8 +7,8 @@ import * as assert from 'assert';
|
||||
import 'mocha';
|
||||
import * as vscode from 'vscode';
|
||||
|
||||
suite('ipynb NotebookSerializer', function () {
|
||||
test.skip('Can open an ipynb notebook', async () => {
|
||||
(vscode.env.uiKind === vscode.UIKind.Web ? suite.skip : suite)('ipynb NotebookSerializer', function () {
|
||||
test('Can open an ipynb notebook', async () => {
|
||||
assert.ok(vscode.workspace.workspaceFolders);
|
||||
const workspace = vscode.workspace.workspaceFolders[0];
|
||||
const uri = vscode.Uri.joinPath(workspace.uri, 'test.ipynb');
|
||||
|
||||
@@ -136,7 +136,7 @@ const apiTestContentProvider: vscode.NotebookContentProvider = {
|
||||
}
|
||||
};
|
||||
|
||||
(vscode.env.uiKind === vscode.UIKind.Web ? suite.skip : suite)('Notebook API tests', function () {
|
||||
suite('Notebook API tests', function () {
|
||||
|
||||
const testDisposables: vscode.Disposable[] = [];
|
||||
const suiteDisposables: vscode.Disposable[] = [];
|
||||
|
||||
Reference in New Issue
Block a user