Update to JupyterLab 4.3.0a1
#2064
Annotations
40 errors
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/editor.spec.ts:12
10 | const FILE = 'environment.yml';
11 |
> 12 | test.use({ autoGoto: false });
| ^
13 |
14 | const processRenameDialog = async (page, prevName: string, newName: string) => {
15 | // Rename in the input dialog
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/editor.spec.ts:12:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.describe() to be called here.
Most common reasons include:
- You are calling test.describe() in a configuration file.
- You are calling test.describe() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/filebrowser.spec.ts:10
8 | import { test } from './fixtures';
9 |
> 10 | test.describe('File Browser', () => {
| ^
11 | test.beforeEach(async ({ page, tmpPath }) => {
12 | await page.contents.uploadFile(
13 | path.resolve(__dirname, './notebooks/empty.ipynb'),
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:104:24)
at Function.describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/filebrowser.spec.ts:10:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.describe() to be called here.
Most common reasons include:
- You are calling test.describe() in a configuration file.
- You are calling test.describe() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/general.spec.ts:12
10 | import { hideAddCellButton, waitForKernelReady } from './utils';
11 |
> 12 | test.describe('General', () => {
| ^
13 | test('The notebook should render', async ({ page, tmpPath, browserName }) => {
14 | const notebook = 'simple.ipynb';
15 | await page.contents.uploadFile(
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:104:24)
at Function.describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/general.spec.ts:12:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/layout.spec.ts:12
10 | import { test } from './fixtures';
11 |
> 12 | test.use({
| ^
13 | mockSettings: {
14 | ...galata.DEFAULT_SETTINGS,
15 | '@jupyter-notebook/application-extension:shell': {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/layout.spec.ts:12:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.describe() to be called here.
Most common reasons include:
- You are calling test.describe() in a configuration file.
- You are calling test.describe() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/links.spec.ts:13
11 | const SUBFOLDER = 'test';
12 |
> 13 | test.describe('Local Links', () => {
| ^
14 | test.beforeEach(async ({ page, tmpPath }) => {
15 | await page.contents.uploadFile(
16 | path.resolve(__dirname, `./notebooks/${NOTEBOOK}`),
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:104:24)
at Function.describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/links.spec.ts:13:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/menus.spec.ts:26
24 | ];
25 |
> 26 | test.use({ autoGoto: false });
| ^
27 |
28 | test.describe('Notebook Menus', () => {
29 | test.beforeEach(async ({ page, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/menus.spec.ts:26:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/mobile.spec.ts:10
8 | import { hideAddCellButton, waitForKernelReady } from './utils';
9 |
> 10 | test.use({
| ^
11 | autoGoto: false,
12 | viewport: { width: 524, height: 800 },
13 | // Set a fixed string as Playwright is preventing the unique test name to be too long
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/mobile.spec.ts:10:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/notebook.spec.ts:14
12 | const NOTEBOOK = 'example.ipynb';
13 |
> 14 | test.use({ autoGoto: false });
| ^
15 |
16 | test.describe('Notebook', () => {
17 | test.beforeEach(async ({ page, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/notebook.spec.ts:14:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/settings.spec.ts:10
8 | // Set a fixed string as Playwright is preventing the unique test name to be too long
9 | // and replaces part of the path with a hash
> 10 | test.use({ autoGoto: false, tmpPath: 'settings' });
| ^
11 |
12 | test.describe('Settings', () => {
13 | test.beforeAll(async ({ request, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/settings.spec.ts:10:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/smoke.spec.ts:7
5 | import { runAndAdvance } from './utils';
6 |
> 7 | test.use({ autoGoto: false });
| ^
8 |
9 | test.describe('Smoke', () => {
10 | test('Tour', async ({ page, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/smoke.spec.ts:7:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/editor.spec.ts:12
10 | const FILE = 'environment.yml';
11 |
> 12 | test.use({ autoGoto: false });
| ^
13 |
14 | const processRenameDialog = async (page, prevName: string, newName: string) => {
15 | // Rename in the input dialog
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/editor.spec.ts:12:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.describe() to be called here.
Most common reasons include:
- You are calling test.describe() in a configuration file.
- You are calling test.describe() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/filebrowser.spec.ts:10
8 | import { test } from './fixtures';
9 |
> 10 | test.describe('File Browser', () => {
| ^
11 | test.beforeEach(async ({ page, tmpPath }) => {
12 | await page.contents.uploadFile(
13 | path.resolve(__dirname, './notebooks/empty.ipynb'),
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:104:24)
at Function.describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/filebrowser.spec.ts:10:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.describe() to be called here.
Most common reasons include:
- You are calling test.describe() in a configuration file.
- You are calling test.describe() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/general.spec.ts:12
10 | import { hideAddCellButton, waitForKernelReady } from './utils';
11 |
> 12 | test.describe('General', () => {
| ^
13 | test('The notebook should render', async ({ page, tmpPath, browserName }) => {
14 | const notebook = 'simple.ipynb';
15 | await page.contents.uploadFile(
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:104:24)
at Function.describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/general.spec.ts:12:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/layout.spec.ts:12
10 | import { test } from './fixtures';
11 |
> 12 | test.use({
| ^
13 | mockSettings: {
14 | ...galata.DEFAULT_SETTINGS,
15 | '@jupyter-notebook/application-extension:shell': {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/layout.spec.ts:12:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.describe() to be called here.
Most common reasons include:
- You are calling test.describe() in a configuration file.
- You are calling test.describe() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/links.spec.ts:13
11 | const SUBFOLDER = 'test';
12 |
> 13 | test.describe('Local Links', () => {
| ^
14 | test.beforeEach(async ({ page, tmpPath }) => {
15 | await page.contents.uploadFile(
16 | path.resolve(__dirname, `./notebooks/${NOTEBOOK}`),
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:104:24)
at Function.describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/links.spec.ts:13:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/menus.spec.ts:26
24 | ];
25 |
> 26 | test.use({ autoGoto: false });
| ^
27 |
28 | test.describe('Notebook Menus', () => {
29 | test.beforeEach(async ({ page, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/menus.spec.ts:26:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/mobile.spec.ts:10
8 | import { hideAddCellButton, waitForKernelReady } from './utils';
9 |
> 10 | test.use({
| ^
11 | autoGoto: false,
12 | viewport: { width: 524, height: 800 },
13 | // Set a fixed string as Playwright is preventing the unique test name to be too long
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/mobile.spec.ts:10:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/notebook.spec.ts:14
12 | const NOTEBOOK = 'example.ipynb';
13 |
> 14 | test.use({ autoGoto: false });
| ^
15 |
16 | test.describe('Notebook', () => {
17 | test.beforeEach(async ({ page, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/notebook.spec.ts:14:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/settings.spec.ts:10
8 | // Set a fixed string as Playwright is preventing the unique test name to be too long
9 | // and replaces part of the path with a hash
> 10 | test.use({ autoGoto: false, tmpPath: 'settings' });
| ^
11 |
12 | test.describe('Settings', () => {
13 | test.beforeAll(async ({ request, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/settings.spec.ts:10:6)
|
ui-tests (chromium)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/smoke.spec.ts:7
5 | import { runAndAdvance } from './utils';
6 |
> 7 | test.use({ autoGoto: false });
| ^
8 |
9 | test.describe('Smoke', () => {
10 | test('Tour', async ({ page, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/smoke.spec.ts:7:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/editor.spec.ts:12
10 | const FILE = 'environment.yml';
11 |
> 12 | test.use({ autoGoto: false });
| ^
13 |
14 | const processRenameDialog = async (page, prevName: string, newName: string) => {
15 | // Rename in the input dialog
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/editor.spec.ts:12:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.describe() to be called here.
Most common reasons include:
- You are calling test.describe() in a configuration file.
- You are calling test.describe() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/filebrowser.spec.ts:10
8 | import { test } from './fixtures';
9 |
> 10 | test.describe('File Browser', () => {
| ^
11 | test.beforeEach(async ({ page, tmpPath }) => {
12 | await page.contents.uploadFile(
13 | path.resolve(__dirname, './notebooks/empty.ipynb'),
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:104:24)
at Function.describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/filebrowser.spec.ts:10:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.describe() to be called here.
Most common reasons include:
- You are calling test.describe() in a configuration file.
- You are calling test.describe() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/general.spec.ts:12
10 | import { hideAddCellButton, waitForKernelReady } from './utils';
11 |
> 12 | test.describe('General', () => {
| ^
13 | test('The notebook should render', async ({ page, tmpPath, browserName }) => {
14 | const notebook = 'simple.ipynb';
15 | await page.contents.uploadFile(
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:104:24)
at Function.describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/general.spec.ts:12:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/layout.spec.ts:12
10 | import { test } from './fixtures';
11 |
> 12 | test.use({
| ^
13 | mockSettings: {
14 | ...galata.DEFAULT_SETTINGS,
15 | '@jupyter-notebook/application-extension:shell': {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/layout.spec.ts:12:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.describe() to be called here.
Most common reasons include:
- You are calling test.describe() in a configuration file.
- You are calling test.describe() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/links.spec.ts:13
11 | const SUBFOLDER = 'test';
12 |
> 13 | test.describe('Local Links', () => {
| ^
14 | test.beforeEach(async ({ page, tmpPath }) => {
15 | await page.contents.uploadFile(
16 | path.resolve(__dirname, `./notebooks/${NOTEBOOK}`),
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:104:24)
at Function.describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/links.spec.ts:13:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/menus.spec.ts:26
24 | ];
25 |
> 26 | test.use({ autoGoto: false });
| ^
27 |
28 | test.describe('Notebook Menus', () => {
29 | test.beforeEach(async ({ page, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/menus.spec.ts:26:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/mobile.spec.ts:10
8 | import { hideAddCellButton, waitForKernelReady } from './utils';
9 |
> 10 | test.use({
| ^
11 | autoGoto: false,
12 | viewport: { width: 524, height: 800 },
13 | // Set a fixed string as Playwright is preventing the unique test name to be too long
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/mobile.spec.ts:10:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/notebook.spec.ts:14
12 | const NOTEBOOK = 'example.ipynb';
13 |
> 14 | test.use({ autoGoto: false });
| ^
15 |
16 | test.describe('Notebook', () => {
17 | test.beforeEach(async ({ page, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/notebook.spec.ts:14:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/settings.spec.ts:10
8 | // Set a fixed string as Playwright is preventing the unique test name to be too long
9 | // and replaces part of the path with a hash
> 10 | test.use({ autoGoto: false, tmpPath: 'settings' });
| ^
11 |
12 | test.describe('Settings', () => {
13 | test.beforeAll(async ({ request, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/settings.spec.ts:10:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/smoke.spec.ts:7
5 | import { runAndAdvance } from './utils';
6 |
> 7 | test.use({ autoGoto: false });
| ^
8 |
9 | test.describe('Smoke', () => {
10 | test('Tour', async ({ page, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/smoke.spec.ts:7:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/editor.spec.ts:12
10 | const FILE = 'environment.yml';
11 |
> 12 | test.use({ autoGoto: false });
| ^
13 |
14 | const processRenameDialog = async (page, prevName: string, newName: string) => {
15 | // Rename in the input dialog
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/editor.spec.ts:12:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.describe() to be called here.
Most common reasons include:
- You are calling test.describe() in a configuration file.
- You are calling test.describe() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/filebrowser.spec.ts:10
8 | import { test } from './fixtures';
9 |
> 10 | test.describe('File Browser', () => {
| ^
11 | test.beforeEach(async ({ page, tmpPath }) => {
12 | await page.contents.uploadFile(
13 | path.resolve(__dirname, './notebooks/empty.ipynb'),
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:104:24)
at Function.describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/filebrowser.spec.ts:10:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.describe() to be called here.
Most common reasons include:
- You are calling test.describe() in a configuration file.
- You are calling test.describe() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/general.spec.ts:12
10 | import { hideAddCellButton, waitForKernelReady } from './utils';
11 |
> 12 | test.describe('General', () => {
| ^
13 | test('The notebook should render', async ({ page, tmpPath, browserName }) => {
14 | const notebook = 'simple.ipynb';
15 | await page.contents.uploadFile(
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:104:24)
at Function.describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/general.spec.ts:12:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/layout.spec.ts:12
10 | import { test } from './fixtures';
11 |
> 12 | test.use({
| ^
13 | mockSettings: {
14 | ...galata.DEFAULT_SETTINGS,
15 | '@jupyter-notebook/application-extension:shell': {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/layout.spec.ts:12:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.describe() to be called here.
Most common reasons include:
- You are calling test.describe() in a configuration file.
- You are calling test.describe() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/links.spec.ts:13
11 | const SUBFOLDER = 'test';
12 |
> 13 | test.describe('Local Links', () => {
| ^
14 | test.beforeEach(async ({ page, tmpPath }) => {
15 | await page.contents.uploadFile(
16 | path.resolve(__dirname, `./notebooks/${NOTEBOOK}`),
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:104:24)
at Function.describe (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/links.spec.ts:13:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/menus.spec.ts:26
24 | ];
25 |
> 26 | test.use({ autoGoto: false });
| ^
27 |
28 | test.describe('Notebook Menus', () => {
29 | test.beforeEach(async ({ page, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/menus.spec.ts:26:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/mobile.spec.ts:10
8 | import { hideAddCellButton, waitForKernelReady } from './utils';
9 |
> 10 | test.use({
| ^
11 | autoGoto: false,
12 | viewport: { width: 524, height: 800 },
13 | // Set a fixed string as Playwright is preventing the unique test name to be too long
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/mobile.spec.ts:10:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/notebook.spec.ts:14
12 | const NOTEBOOK = 'example.ipynb';
13 |
> 14 | test.use({ autoGoto: false });
| ^
15 |
16 | test.describe('Notebook', () => {
17 | test.beforeEach(async ({ page, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/notebook.spec.ts:14:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/settings.spec.ts:10
8 | // Set a fixed string as Playwright is preventing the unique test name to be too long
9 | // and replaces part of the path with a hash
> 10 | test.use({ autoGoto: false, tmpPath: 'settings' });
| ^
11 |
12 | test.describe('Settings', () => {
13 | test.beforeAll(async ({ request, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/settings.spec.ts:10:6)
|
ui-tests (firefox)
Error: Playwright Test did not expect test.use() to be called here.
Most common reasons include:
- You are calling test.use() in a configuration file.
- You are calling test.use() in a file that is imported by the configuration file.
- You have two different versions of @playwright/test. This usually happens
when one of the dependencies in your package.json depends on @playwright/test.
at test/smoke.spec.ts:7
5 | import { runAndAdvance } from './utils';
6 |
> 7 | test.use({ autoGoto: false });
| ^
8 |
9 | test.describe('Smoke', () => {
10 | test('Tour', async ({ page, tmpPath }) => {
at TestTypeImpl._currentSuite (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:71:13)
at TestTypeImpl._use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/common/testType.js:218:24)
at Function.use (/home/runner/work/notebook/notebook/ui-tests/node_modules/playwright/lib/transform/transform.js:256:12)
at Object.<anonymous> (/home/runner/work/notebook/notebook/ui-tests/test/smoke.spec.ts:7:6)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
notebook-chromium-test-assets
Expired
|
180 Bytes |
|
notebook-chromium-test-report
Expired
|
183 KB |
|
notebook-chromium-updated-snapshots
Expired
|
13.4 KB |
|
notebook-dist-2064
Expired
|
10.4 MB |
|
notebook-firefox-test-assets
Expired
|
180 Bytes |
|
notebook-firefox-test-report
Expired
|
183 KB |
|
notebook-firefox-updated-snapshots
Expired
|
13.4 KB |
|
notebook-pkgs-2064
Expired
|
57.1 KB |
|