Skip to content

Instantly share code, notes, and snippets.

@topnotch48
Created April 22, 2018 13:46
Show Gist options
  • Save topnotch48/f1771434c8ec909742e9a0949dd785ca to your computer and use it in GitHub Desktop.
Save topnotch48/f1771434c8ec909742e9a0949dd785ca to your computer and use it in GitHub Desktop.
describe('BannerComponent', () => {
let component: BannerComponent;
let fixture: ComponentFixture<BannerComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ BannerComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(BannerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeDefined();
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment