diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 2dfe427..de146a3 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -1,12 +1,14 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; import { LoginComponent } from './login/login.component'; +import { MockComponent } from './mock/mock.component'; import { RegisterBusinessComponent } from './register-business/register-business.component'; import { TabsComponent } from './tabs/tabs.component'; const routes: Routes = [ { path: '', pathMatch: 'full', redirectTo: 'login' }, { component: LoginComponent, path: 'login' }, + { component: MockComponent, path: 'mock' }, { component: TabsComponent, path: 'tabs', children : [ { path: '', pathMatch: 'full', redirectTo: 'register-business' diff --git a/src/app/app.module.ts b/src/app/app.module.ts index f007d2b..0bb3409 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -7,13 +7,15 @@ import { LoginComponent } from './login/login.component'; import { TabsComponent } from './tabs/tabs.component'; import { RegisterBusinessComponent } from './register-business/register-business.component'; import { FormsModule } from '@angular/forms'; +import { MockComponent } from './mock/mock.component'; @NgModule({ declarations: [ AppComponent, LoginComponent, TabsComponent, - RegisterBusinessComponent + RegisterBusinessComponent, + MockComponent ], imports: [ BrowserModule, diff --git a/src/app/mock/mock.component.html b/src/app/mock/mock.component.html new file mode 100644 index 0000000..d8e60a4 --- /dev/null +++ b/src/app/mock/mock.component.html @@ -0,0 +1 @@ +
Mocking external window
diff --git a/src/app/mock/mock.component.scss b/src/app/mock/mock.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/mock/mock.component.spec.ts b/src/app/mock/mock.component.spec.ts new file mode 100644 index 0000000..2df8705 --- /dev/null +++ b/src/app/mock/mock.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { MockComponent } from './mock.component'; + +describe('MockComponent', () => { + let component: MockComponent; + let fixture: ComponentFixture- Lorem, ipsum dolor sit amet consectetur adipisicing elit. Numquam nisi quia fuga nobis magnam accusamus recusandae vitae architecto fugit natus! Nostrum doloremque id laborum sequi magni ducimus perferendis quam aspernatur? + This is the full name for a business entity that I wish to reserve, including any required prefixes and suffixes. I understand that this has to be nationally unique, and am not violating any copyrights or trademarks.
-