Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -2486,12 +2486,12 @@ describe('IgxQueryBuilder', () => {
const ROW_HEIGHT = 40;
const DROP_CONDITION_HERE = "Drop here to insert";
let chipComponents = [];
beforeEach(() => {
beforeEach(fakeAsync(() => {
queryBuilder.expressionTree = QueryBuilderFunctions.generateExpressionTreeWithSubGroup();
fix.detectChanges();

chipComponents = fix.debugElement.queryAll(By.directive(IgxChipComponent));
});
}));

it('Should render ghost when mouse drag operation starts.', () => {
const draggedChip = chipComponents[1].componentInstance;
Expand All @@ -2511,7 +2511,7 @@ describe('IgxQueryBuilder', () => {
expect(chipComponents[1].nativeElement.getBoundingClientRect().height).toBe(0);
});

it('Should render drop ghost properly when mouse dragged.', fakeAsync(() => {
xit('Should render drop ghost properly when mouse dragged.', fakeAsync(() => {
const draggedChip = chipComponents[1].componentInstance;
const draggedChipCenter = QueryBuilderFunctions.getElementCenter(draggedChip.chipArea.nativeElement);
const dragDir = draggedChip.dragDirective;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const configureTestSuite = (configureAction?: () => TestBed) => {

// TODO: enable on re-run by selecting enable debug logging
// https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/troubleshooting-workflows/enabling-debug-logging
const shardLogging = false;
const shardLogging = true;
if (shardLogging) {
const myReporter = {
suiteStarted: function(result) {
Expand Down
Loading