添加银行卡绑卡
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import { CwcBankCardManagementIndexComponent } from './index.component';
|
||||
|
||||
describe('CwcBankCardManagementIndexComponent', () => {
|
||||
let component: CwcBankCardManagementIndexComponent;
|
||||
let fixture: ComponentFixture<CwcBankCardManagementIndexComponent>;
|
||||
|
||||
beforeEach(waitForAsync(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [CwcBankCardManagementIndexComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(CwcBankCardManagementIndexComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user