23 lines
577 B
TypeScript
23 lines
577 B
TypeScript
import { ComponentFixture, TestBed } from "@angular/core/testing";
|
|
|
|
import { AddressSelect } from "./address-select";
|
|
|
|
describe("AddressSelect", () => {
|
|
let component: AddressSelect;
|
|
let fixture: ComponentFixture<AddressSelect>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [AddressSelect],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(AddressSelect);
|
|
component = fixture.componentInstance;
|
|
await fixture.whenStable();
|
|
});
|
|
|
|
it("should create", () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|