mirror of
https://github.com/fabioformosa/quartz-manager.git
synced 2026-05-14 22:00:30 +09:00
#12 fixed test
This commit is contained in:
@@ -2,21 +2,12 @@ import { TestBed, async } from '@angular/core/testing';
|
|||||||
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||||
import { RouterTestingModule } from '@angular/router/testing';
|
import { RouterTestingModule } from '@angular/router/testing';
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from './app.component';
|
||||||
import { ManagerComponent } from './views/manager';
|
|
||||||
import { LoginComponent } from './views/login';
|
|
||||||
import { MockApiService } from './services/mocks/api.service.mock';
|
import { MockApiService } from './services/mocks/api.service.mock';
|
||||||
|
|
||||||
import { LoginGuard } from './guards';
|
import { FooterComponent} from './components';
|
||||||
import { NotFoundComponent } from './views/not-found';
|
|
||||||
import {
|
|
||||||
FooterComponent,
|
|
||||||
GithubComponent,
|
|
||||||
} from './components';
|
|
||||||
|
|
||||||
import {
|
import {MatIconRegistry} from '@angular/material/icon';
|
||||||
MatToolbarModule,
|
import {MatToolbarModule} from '@angular/material/toolbar';
|
||||||
MatIconRegistry
|
|
||||||
} from '@angular/material';
|
|
||||||
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
@@ -26,8 +17,6 @@ import {
|
|||||||
ConfigService
|
ConfigService
|
||||||
} from './services';
|
} from './services';
|
||||||
|
|
||||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
||||||
|
|
||||||
describe('AppComponent', () => {
|
describe('AppComponent', () => {
|
||||||
beforeEach(async(() => {
|
beforeEach(async(() => {
|
||||||
TestBed.configureTestingModule({
|
TestBed.configureTestingModule({
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
||||||
import {
|
|
||||||
MatCardModule, MatInputModule, MatProgressSpinnerModule, MatProgressBarModule
|
import { MatCardModule} from '@angular/material/card';
|
||||||
} from '@angular/material';
|
import { MatInputModule} from '@angular/material/input';
|
||||||
|
import {MatProgressSpinnerModule} from '@angular/material/progress-spinner';
|
||||||
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
||||||
|
|
||||||
import { SignupComponent } from './signup.component';
|
import { SignupComponent } from './signup.component';
|
||||||
import { ReactiveFormsModule } from '@angular/forms';
|
import { ReactiveFormsModule } from '@angular/forms';
|
||||||
import { RouterTestingModule } from '@angular/router/testing';
|
import { RouterTestingModule } from '@angular/router/testing';
|
||||||
|
|||||||
Reference in New Issue
Block a user