ing
This commit is contained in:
parent
ec7443f441
commit
7740d108b7
|
@ -1,10 +1,10 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
import { SigninComponent } from './signin/signin.component';
|
||||
import { SignupComponent } from './signup/signup.component';
|
||||
import { ModifyComponent } from './modify/modify.component';
|
||||
import { ResetPasswordComponent } from './reset-password/reset-password.component';
|
||||
import { SigninComponent } from './components/signin/signin.component';
|
||||
import { SignupComponent } from './components/signup/signup.component';
|
||||
import { ModifyComponent } from './components/modify/modify.component';
|
||||
import { ResetPasswordComponent } from './components/reset-password/reset-password.component';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
|
|
15
src/app/packages/member/services/member.service.spec.ts
Normal file
15
src/app/packages/member/services/member.service.spec.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
import { TestBed, inject } from '@angular/core/testing';
|
||||
|
||||
import { MemberService } from './member.service';
|
||||
|
||||
describe('MemberService', () => {
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
providers: [MemberService]
|
||||
});
|
||||
});
|
||||
|
||||
it('should be created', inject([MemberService], (service: MemberService) => {
|
||||
expect(service).toBeTruthy();
|
||||
}));
|
||||
});
|
8
src/app/packages/member/services/member.service.ts
Normal file
8
src/app/packages/member/services/member.service.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
import { Injectable } from '@angular/core';
|
||||
|
||||
@Injectable()
|
||||
export class MemberService {
|
||||
|
||||
constructor() { }
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user