Newer
Older
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CreateDepositContainerComponent } from './create-deposit-container.component';
describe('CreateDepositContainerComponent', () => {
let component: CreateDepositContainerComponent;
let fixture: ComponentFixture<CreateDepositContainerComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CreateDepositContainerComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CreateDepositContainerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});