-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6380 from jtpio/test-markdown
Add UI tests for a simple notebook
- Loading branch information
Showing
4 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright (c) Jupyter Development Team. | ||
// Distributed under the terms of the Modified BSD License. | ||
|
||
import path from 'path'; | ||
|
||
import { expect } from '@playwright/test'; | ||
|
||
import { test } from './fixtures'; | ||
import { waitForKernelReady } from './utils'; | ||
|
||
test.describe('General', () => { | ||
test('The notebook should render', async ({ page, tmpPath }) => { | ||
const notebook = 'simple.ipynb'; | ||
await page.contents.uploadFile( | ||
path.resolve(__dirname, `./notebooks/${notebook}`), | ||
`${tmpPath}/${notebook}` | ||
); | ||
await page.goto(`notebooks/${tmpPath}/${notebook}`); | ||
|
||
// wait for the kernel status animations to be finished | ||
await waitForKernelReady(page); | ||
await page.waitForSelector( | ||
".jp-Notebook-ExecutionIndicator[data-status='idle']" | ||
); | ||
|
||
// force switching back to command mode to avoid capturing the cursor in the screenshot | ||
await page.evaluate(async () => { | ||
await window.jupyterapp.commands.execute('notebook:enter-command-mode'); | ||
}); | ||
|
||
expect(await page.screenshot()).toMatchSnapshot('notebook.png'); | ||
}); | ||
}); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"# Test Notebook" | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"language_info": { | ||
"name": "python" | ||
}, | ||
"orig_nbformat": 4 | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 2 | ||
} |