Files
vscode/extensions/vscode-api-tests/src/singlefolder-tests/ipynb.test.ts
Don Jayamanne fd38deac92 Skip flaky notebook test (#258223)
Skip flaky test
2025-07-28 13:46:15 +00:00

54 lines
1.7 KiB
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as assert from 'assert';
import 'mocha';
import * as vscode from 'vscode';
import { assertNoRpc, closeAllEditors, createRandomFile } from '../utils';
const ipynbContent = JSON.stringify({
"cells": [
{
"cell_type": "markdown",
"source": ["## Header"],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 2,
"source": ["print('hello 1')\n", "print('hello 2')"],
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": ["hello 1\n", "hello 2\n"]
}
],
"metadata": {}
}
]
});
suite('ipynb NotebookSerializer', function () {
teardown(async function () {
assertNoRpc();
await closeAllEditors();
});
test.skip('Can open an ipynb notebook', async () => {
const file = await createRandomFile(ipynbContent, undefined, '.ipynb');
const notebook = await vscode.workspace.openNotebookDocument(file);
await vscode.window.showNotebookDocument(notebook);
const notebookEditor = vscode.window.activeNotebookEditor;
assert.ok(notebookEditor);
assert.strictEqual(notebookEditor.notebook.cellCount, 2);
assert.strictEqual(notebookEditor.notebook.cellAt(0).kind, vscode.NotebookCellKind.Markup);
assert.strictEqual(notebookEditor.notebook.cellAt(1).kind, vscode.NotebookCellKind.Code);
assert.strictEqual(notebookEditor.notebook.cellAt(1).outputs.length, 1);
});
});