@@ -6,7 +6,7 @@ import { NoopAnimationsModule } from '@angular/platform-browser/animations';
66import { By } from '@angular/platform-browser' ;
77import { ControlsFunction } from '../test-utils/controls-functions.spec' ;
88import { QueryBuilderFunctions , SampleEntities } from './query-builder-functions.spec' ;
9- import { UIInteractions , wait } from '../test-utils/ui-interactions.spec' ;
9+ import { UIInteractions } from '../test-utils/ui-interactions.spec' ;
1010import { FormsModule } from '@angular/forms' ;
1111import { NgTemplateOutlet } from '@angular/common' ;
1212import { QueryBuilderSelectors } from './query-builder.common' ;
@@ -53,7 +53,6 @@ describe('IgxQueryBuilder', () => {
5353 expect ( bodyElement ) . toHaveClass ( QueryBuilderSelectors . QUERY_BUILDER_BODY ) ;
5454 expect ( bodyElement . children . length ) . toEqual ( 1 ) ;
5555
56- debugger
5756 QueryBuilderFunctions . verifyEditModeQueryExpressionInputStates ( fix , true , false ) ;
5857 QueryBuilderFunctions . verifyQueryEditModeExpressionInputValues ( fix , '' , '' ) ;
5958
@@ -1944,18 +1943,18 @@ describe('IgxQueryBuilder', () => {
19441943 fix . detectChanges ( ) ;
19451944
19461945 const selectEntity = QueryBuilderFunctions . getQueryBuilderEntitySelect ( fix , 0 ) ;
1947- expect ( selectEntity . children [ 0 ] . classList . contains ( 'igx-input-group--disabled' ) ) . toBeTrue ;
1946+ expect ( selectEntity . children [ 0 ] . classList . contains ( 'igx-input-group--disabled' ) ) . toBeTrue ( ) ;
19481947 } ) ;
19491948
19501949 it ( 'Should disable changing a selected entity when "disableEntityChange"=true only after initial selection' , fakeAsync ( ( ) => {
19511950 queryBuilder . disableEntityChange = true ;
19521951 fix . detectChanges ( ) ;
19531952
19541953 const selectEntity = QueryBuilderFunctions . getQueryBuilderEntitySelect ( fix , 0 ) ;
1955- expect ( selectEntity . children [ 0 ] . classList . contains ( 'igx-input-group--disabled' ) ) . toBeFalse ;
1954+ expect ( selectEntity . children [ 0 ] . classList . contains ( 'igx-input-group--disabled' ) ) . toBeFalse ( ) ;
19561955 QueryBuilderFunctions . selectEntityInEditModeExpression ( fix , 0 , 0 ) ;
19571956
1958- expect ( selectEntity . children [ 0 ] . classList . contains ( 'igx-input-group--disabled' ) ) . toBeTrue ;
1957+ expect ( selectEntity . children [ 0 ] . classList . contains ( 'igx-input-group--disabled' ) ) . toBeTrue ( ) ;
19591958 } ) ) ;
19601959
19611960 it ( `Should show 'Ungroup' as disabled in root group context menu.` , fakeAsync ( ( ) => {
0 commit comments