Update TypeScript and Prettier

This commit is contained in:
Steve Faulkner
2020-12-09 21:49:36 -06:00
parent 0532ed26a2
commit a2568be0fe
482 changed files with 43811 additions and 43725 deletions

View File

@@ -15,7 +15,7 @@ describe("Notebook UI tests", () => {
uploadedNotebookNode = await uploadNotebookIfNotExist(frame, notebookName);
await uploadedNotebookNode.click();
await frame.waitForSelector(".tabNavText");
const tabTitle = await frame.$eval(".tabNavText", element => element.textContent);
const tabTitle = await frame.$eval(".tabNavText", (element) => element.textContent);
expect(tabTitle).toEqual(notebookName);
const closeIcon = await frame.waitForSelector(".close-Icon");
await closeIcon.click();