Skip to content
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

typing in parts #1170

Merged
merged 2 commits into from
Jul 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/VFBMain.js
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ class VFBMain extends React.Component {
self.setState({ UIUpdated: true })
}}
focusTermRef={this.focusTermReference}
exclude={["ClassQueriesFrom", "Debug"]}
exclude={["ClassQueriesFrom", "Debug", "DownloadMeta"]}
order={['Symbol',
'Title',
'Name',
Expand Down
3 changes: 2 additions & 1 deletion tests/jest/vfb/batch2/slice-viewer-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ describe('VFB Slice Viewer Component Tests', () => {

it('Typing medu in the query builder search bar', async () => {
await page.focus('input#query-typeahead');
await page.keyboard.type('medu');
await page.keyboard.type('med');
await page.keyboard.type('ulla');
await page.keyboard.press(String.fromCharCode(13))

await wait4selector(page, 'div.tt-suggestion', { visible: true , timeout : 10000})
Expand Down