-
Notifications
You must be signed in to change notification settings - Fork 406
e2e - cypher tests #383
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e2e - cypher tests #383
Conversation
.meta({ rte: rte.standalone }) | ||
.after(async() => { | ||
//Delete database | ||
await deleteDatabase(ossStandaloneConfig.databaseName); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you aware it's overlapping the afterEach
? Also, it's the same, why need it twice?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks, you are right
removed
//Delete database | ||
await deleteDatabase(ossStandaloneConfig.databaseName); | ||
}) | ||
('Verify that wheh popover Editor is displayed user can see it is populated with the script that was detected between the quotes or it is blank if quotes were empty', async t => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You have a typo (wheh)
Also, IMO the names of the tests in this fixture are too long
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reduced the names where possible
//Close popover editor and re-open with added script | ||
await t.pressKey('esc'); | ||
await t.typeText(workbenchPage.queryInput, `${command} "${script}`, { replace: true }); | ||
await t.debug(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Redundant
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed
No description provided.