format errors fixed

This commit is contained in:
Srinath Narayanan
2020-11-18 12:31:21 -08:00
parent 543c876430
commit c0e10e1c1d
2 changed files with 3 additions and 3 deletions

View File

@@ -100,8 +100,8 @@ const initTestExplorer = async (): Promise<void> => {
portalRunnerDatabaseAccount
);
console.log("token:" + token)
console.log("db:" + databaseAccount)
console.log("token:" + token);
console.log("db:" + databaseAccount);
const initTestExplorerContent = {
type: MessageTypes.InitTestExplorer,
inputs: {

View File

@@ -16,7 +16,7 @@ describe("Notebook UI tests", () => {
const uploadNotebookPath = path.join(__dirname, "testNotebooks", notebookName);
await uploadNotebook(frame, uploadNotebookPath);
uploadedNotebookNode = await getNotebookNode(frame, notebookName);
await uploadedNotebookNode.click();
await frame.waitForSelector(".tabNavText");
const tabTitle = await frame.$eval(".tabNavText", element => element.textContent);