Skip to content

Commit 79a41ea

Browse files
IanMatthewHuffIan Huff
andauthored
remove non-functioning cell from beakerx test file (microsoft#13739)
Co-authored-by: Ian Huff <ianhuff@AAULMER-DT1.redmond.corp.microsoft.com>
1 parent dab7c74 commit 79a41ea

File tree

3 files changed

+1
-22
lines changed

3 files changed

+1
-22
lines changed

news/3 Code Health/13734.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix nighly failure with beakerx.

src/test/datascience/uiTests/ipywidget.ui.functional.test.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,6 @@ use(chaiAsPromised);
458458
const { notebookUI } = await openBeakerXIpynb();
459459
await assert.eventually.isFalse(notebookUI.cellHasOutput(1));
460460
await assert.eventually.isFalse(notebookUI.cellHasOutput(2));
461-
await assert.eventually.isFalse(notebookUI.cellHasOutput(3));
462461

463462
await notebookUI.executeCell(1);
464463
await retryIfFail(async () => {
@@ -479,15 +478,6 @@ use(chaiAsPromised);
479478
const modals = await cellOutput.$$('div.modal-content');
480479
assert.isAtLeast(modals.length, 1);
481480
});
482-
483-
// This last part if flakey. BeakerX can fail itself loading settings
484-
await notebookUI.executeCell(3);
485-
await retryIfFail(async () => {
486-
// Confirm form with fields have been rendered.
487-
const cellOutput = await notebookUI.getCellOutput(3);
488-
const textAreas = await cellOutput.$$('div.widget-textarea');
489-
assert.isAtLeast(textAreas.length, 1);
490-
});
491481
});
492482
test('Render bqplot', async () => {
493483
const { notebookUI } = await openBqplotIpynb();

src/test/datascience/uiTests/notebooks/beakerx_widgets.ipynb

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,6 @@
3737
"\n",
3838
"Histogram(data= dataH4, binCount= 10000)"
3939
]
40-
},
41-
{
42-
"cell_type": "code",
43-
"execution_count": 27,
44-
"metadata": {},
45-
"outputs": [],
46-
"source": [
47-
"from beakerx import *\n",
48-
"f5 = EasyForm(\"form5\")\n",
49-
"f5.addTextArea(\"field name\", value = \"5initial value5\")\n",
50-
"f5"
51-
]
5240
}
5341
],
5442
"metadata": {

0 commit comments

Comments
 (0)