@angular/core/testing#waitForAsync TypeScript Examples
The following examples show how to use
@angular/core/testing#waitForAsync.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: app.component.spec.ts From Angular-ActionStreams with MIT License | 6 votes |
describe('AppComponent', () => {
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [
AppComponent
],
}).compileComponents();
}));
it('should create the app', () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
});
it(`should have as title 'APM'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('APM');
});
it('should render title', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.nativeElement;
expect(compiled.querySelector('.content span').textContent).toContain('APM app is running!');
});
});
Example #2
Source File: app.component.spec.ts From ng-conf-2020-workshop with MIT License | 6 votes |
describe('AppComponent', () => {
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [
NoopAnimationsModule,
RouterTestingModule,
IgxNavigationDrawerModule,
AuthenticationModule,
IgxNavbarModule,
IgxLayoutModule,
IgxRippleModule
],
declarations: [
AppComponent
],
}).compileComponents();
}));
it('should create the app', waitForAsync(() => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
}));
});
Example #3
Source File: app.component.spec.ts From ngx-colors with MIT License | 6 votes |
describe('AppComponent', () => {
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [
RouterTestingModule
],
declarations: [
AppComponent
],
}).compileComponents();
}));
it('should create the app', () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app).toBeTruthy();
});
it(`should have as title 'ngx-color-examples'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app.title).toEqual('ngx-color-examples');
});
it('should render title', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.debugElement.nativeElement;
expect(compiled.querySelector('.content span').textContent).toContain('ngx-color-examples app is running!');
});
});
Example #4
Source File: card-content.component.spec.ts From canopy with Apache License 2.0 | 6 votes |
describe('LgCardContentComponent', () => {
let component: LgCardContentComponent;
let fixture: ComponentFixture<LgCardContentComponent>;
beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ LgCardContentComponent ],
}).compileComponents();
}),
);
beforeEach(() => {
fixture = TestBed.createComponent(LgCardContentComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
it('should contain the default class', () => {
expect(fixture.nativeElement.getAttribute('class')).toContain('lg-card-content');
});
});
Example #5
Source File: app.component.spec.ts From master-frontend-lemoncode with MIT License | 6 votes |
describe('AppComponent', () => {
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [
RouterTestingModule
],
declarations: [
AppComponent
],
}).compileComponents();
}));
it('should create the app', () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
});
it(`should have as title 'lemoncode-master-angular'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('lemoncode-master-angular');
});
it('should render title', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.nativeElement;
expect(compiled.querySelector('.content span').textContent).toContain('lemoncode-master-angular app is running!');
});
});
Example #6
Source File: app.component.spec.ts From league-profile-tool with MIT License | 6 votes |
describe('AppComponent', () => {
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [AppComponent],
providers: [ElectronService],
imports: [RouterTestingModule]
}).compileComponents();
}));
it('should create the app', waitForAsync(() => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app).toBeTruthy();
}));
});
Example #7
Source File: file-reader.component.spec.ts From ng-spotify-importer with GNU General Public License v3.0 | 6 votes |
describe('FileReaderComponent', () => {
let component: FileReaderComponent;
let fixture: ComponentFixture<FileReaderComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [FileReaderComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(FileReaderComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
Example #8
Source File: app.component.spec.ts From nica-os with MIT License | 6 votes |
describe('AppComponent', () => {
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [
RouterTestingModule
],
declarations: [
AppComponent
],
}).compileComponents();
}));
it('should create the app', () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
});
it(`should have as title 'frontend'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('frontend');
});
it('should render title', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.nativeElement;
expect(compiled.querySelector('.content span').textContent).toContain('frontend app is running!');
});
});
Example #9
Source File: app.component.spec.ts From msfs-community-downloader with GNU Affero General Public License v3.0 | 6 votes |
describe('AppComponent', () => {
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [AppComponent],
providers: [ElectronService],
imports: [RouterTestingModule, TranslateModule.forRoot()]
}).compileComponents();
}));
it('should create the app', waitForAsync(() => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app).toBeTruthy();
}));
});
Example #10
Source File: app.component.spec.ts From leapp with Mozilla Public License 2.0 | 6 votes |
describe("AppComponent", () => {
beforeEach(waitForAsync(() => {
const spyBehaviouralSubjectService = jasmine.createSpyObj("BehaviouralSubjectService", [], {
sessions: [],
sessions$: { subscribe: () => {} },
workspaceExists: () => true,
getWorkspace: () => new Workspace(),
persistWorkspace: () => {},
});
const spyRepositoryService = jasmine.createSpyObj("Repository", {
getProfiles: [],
getSessions: [],
createWorkspace: () => {},
getWorkspace: (): Workspace => new Workspace(),
});
const spyLeappCoreService = jasmine.createSpyObj("LeappCoreService", [], {
workspaceService: spyBehaviouralSubjectService,
repository: spyRepositoryService,
awsCoreService: { getRegions: () => [] },
});
TestBed.configureTestingModule({
imports: [RouterTestingModule],
providers: [].concat(mustInjected().concat({ provide: AppProviderService, useValue: spyLeappCoreService })),
declarations: [AppComponent],
}).compileComponents();
}));
it("should create the app", () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app).toBeTruthy();
});
});
Example #11
Source File: avatar.component.spec.ts From BetterCrewlink-mobile with GNU General Public License v3.0 | 6 votes |
describe('AvatarComponent', () => {
let component: AvatarComponent;
let fixture: ComponentFixture<AvatarComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [AvatarComponent],
imports: [IonicModule.forRoot()],
}).compileComponents();
fixture = TestBed.createComponent(AvatarComponent);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});
Example #12
Source File: app.component.spec.ts From Angular-Cookbook with MIT License | 6 votes |
describe('AppComponent', () => {
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [
RouterTestingModule
],
declarations: [
AppComponent
],
}).compileComponents();
}));
it('should create the app', () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
});
it(`should have as title 'cc-inputs-outputs'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('cc-inputs-outputs');
});
it('should render title', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.nativeElement;
expect(compiled.querySelector('.content span').textContent).toContain('cc-inputs-outputs app is running!');
});
});