Skip to content

Commit

Permalink
Modified the budget space alloted
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathew1011 committed Apr 17, 2020
1 parent 67457d6 commit 393d1ea
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,6 @@ describe('WvrFooterComponent', () => {
const spyOnResize = spyOn(component, 'positionSelf');
window.dispatchEvent(new Event('resize'));
expect(spyOnResize).toHaveBeenCalled();

const isSticky = false;
const newIsSticky = 420 <= (window.innerHeight - 65);
expect((isSticky !== newIsSticky)).toBeTruthy();

const anotherNewIsSticky = 350 <= (window.innerHeight - 65);
expect((isSticky !== anotherNewIsSticky)).toBeTruthy();
});

});
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, HostBinding, Input } from '@angular/core';
import { DomSanitizer, SafeUrl } from '@angular/platform-browser';
import { DomSanitizer } from '@angular/platform-browser';

/**
* Intended to appear at the top of document and provides for branding, links and page title.
Expand Down

0 comments on commit 393d1ea

Please sign in to comment.