Skip to content

Commit

Permalink
Logs into the console
Browse files Browse the repository at this point in the history
Signed-off-by: martinRenou <martin.renou@gmail.com>
  • Loading branch information
martinRenou committed Sep 4, 2023
1 parent a7d2dec commit cf1a6f2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ui-tests-ipw7/tests/ipydatagrid.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ const testPlotUpdates = async (page: IJupyterLabPageFixture, tmpPath: string, th

test.describe('ipydatagrid Visual Regression', () => {
test.beforeEach(async ({ page, tmpPath }) => {
page.on("console", (message) => {
console.log('CONSOLE MSG ---', message.text());
});

await page.contents.uploadDirectory(
path.resolve(__dirname, './notebooks'),
tmpPath
Expand Down
4 changes: 4 additions & 0 deletions ui-tests-ipw8/tests/ipydatagrid.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ const testPlotUpdates = async (page: IJupyterLabPageFixture, tmpPath: string, th

test.describe('ipydatagrid Visual Regression', () => {
test.beforeEach(async ({ page, tmpPath }) => {
page.on("console", (message) => {
console.log('CONSOLE MSG ---', message.text());
});

await page.contents.uploadDirectory(
path.resolve(__dirname, './notebooks'),
tmpPath
Expand Down

0 comments on commit cf1a6f2

Please sign in to comment.