File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed
tests/critical-path/tree-view Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -1016,7 +1016,7 @@ export class BrowserPage {
1016
1016
}
1017
1017
1018
1018
/**
1019
- * Get text from first tree element
1019
+ *Get text from first tree element
1020
1020
*/
1021
1021
1022
1022
async getTextFromFirstTreeElement ( ) : Promise < String > {
Original file line number Diff line number Diff line change @@ -177,8 +177,8 @@ export class CliPage {
177
177
*/
178
178
179
179
async createRandomIndexNamewithCLI ( ) : Promise < string > {
180
- let word = common . generateWord ( 10 ) ;
181
- let index = ' idx:' + word ;
180
+ const word = common . generateWord ( 10 ) ;
181
+ const index = ` idx:${ word } ` ;
182
182
const commands = [
183
183
`FT.CREATE ${ index } ON HASH SCHEMA "name" TEXT` ,
184
184
] ;
Original file line number Diff line number Diff line change @@ -15,15 +15,11 @@ import { verifyKeysDisplayedInTheList } from '../../../helpers/keys';
15
15
16
16
const browserPage = new BrowserPage ( ) ;
17
17
const common = new Common ( ) ;
18
-
19
18
const cliPage = new CliPage ( ) ;
20
-
21
19
let keyNames : string [ ] ;
22
-
23
20
let keyName1 : string ;
24
21
let keyName2 : string ;
25
22
let keynameSingle : string ;
26
-
27
23
let index : string ;
28
24
29
25
fixture `Tree view navigations improvement tests`
You can’t perform that action at this time.
0 commit comments