angular-unit-test Questions
1
After updating, my previously passing unit tests now fail with the error: 'TypeError: this._renderer.addClass is not a function' across multiple tests, despite not using or importing the renderer i...
Lugo asked 16/2 at 11:37
7
convert angular 7 project into angular universal while running "ng test" command giving error as "Incomplete: No specs found, , randomized with seed 48751".
Tried different ways mention over stacko...
Rains asked 17/9, 2019 at 9:31
4
In my angular project, I have a function
reloadPage(): void {
window.location.reload();
}
So when ever I need to reload the page, I used to call this function.
Now I am trying to add the unit tes...
Hellen asked 1/8, 2021 at 6:24
2
Solved
My component file has the following code
@ViewChild('clusterCard', { static: false }) clusterCard: ElementRef;
highLightTheClusterCard(point: PickupClusterPoint) {
if (point) {
const card: HTM...
Barracks asked 28/11, 2020 at 19:7
4
While I was working on Angular 4 unit tests, one of the pages which uses google maps and agm package showed an error:
An error was thrown in afterAll\n[object ErrorEvent] thrown
Does anyone know w...
Tottering asked 21/5, 2018 at 15:22
2
I'm trying to simulate a file Drop event for testing an angular directive but I cannot manage to create the DragEvent.
it('should output file drop when file droped', () => {
const file = new F...
Flexor asked 17/7, 2019 at 16:47
3
Solved
I want to write a simple unit test to check if button is disable when certain value is null or empty.
Below is my spec file:
test.spec.ts
import { async, ComponentFixture, TestBed } from '@ang...
Actuate asked 19/4, 2018 at 10:5
1
Solved
I want to perform unit testing on this onSubmit function where the positive submission is leading to MatSnackbar with message, "Submitted Successfully". I am new to Jasmine Karma please g...
Delve asked 11/7, 2021 at 8:30
1
Solved
I try to understand how to test this function. From (err)=>{ line, it's showing as an uncovered statement.
service.ts
Deletevote(inp) {
console.log(inp);
return this.http.post(environment.ap...
Zymase asked 14/7, 2021 at 13:39
2
Solved
When using provider overrides what is the alternative of the following now that TestBed.get has been deprecated in Angular 9
TestBed.configureTestingModule({
providers: [{ provide: MyClass, useCl...
Brokenhearted asked 18/2, 2020 at 12:34
0
In my Angular app I have a <select> bound to a reactive form like the following:
<form [formGroup]="myForm">
<select formControlName="myControlName" id="my-...
Columbarium asked 15/9, 2020 at 15:10
1
Solved
I have a service which uses a httpClient that I want to test:
@Injectable({
providedIn: 'root'
})
export class TodolistService {
constructor(private http: HttpClient) { }
getTodoLists(): Obser...
Geriatrician asked 29/7, 2020 at 14:35
1
I want to do a few unit tests there is a formGroup passing as input from parent component to a child component, how to do it.
app.componet.ts
import { Component, Input } from '@angular/core';
imp...
Gandzha asked 29/7, 2020 at 11:37
2
After upgrading the Angular project to Angular 10, ngRx effects unit tests started breaking. Following is the error after upgrade:
Running into the same issue, Follow the solution.
Thanks,
Halette asked 16/7, 2020 at 18:47
1
Solved
Given this component that creates a service locally
@Component({
<removed for clarity>
providers: [
{ provide: 'IMyService', useClass: MyService },
]
})
export class MyComponent implemen...
Diarmit asked 6/9, 2019 at 7:32
4
Solved
There is an option in .angular-cli.json to disable the automatic creating of *.spec files e.g. for components, see json schema.
This is a really nice feature because personally (this is just my op...
Pinchcock asked 18/9, 2017 at 9:34
1
Solved
I have a component with a setTimeOut function inside a ngOnInit function. To write unit test cases for that I'm using tick and fakeAsync to fast forward the setTimeOut. But, it's not getting execut...
Selangor asked 23/1, 2019 at 22:5
1
I am unit testing an angular application and there is a service I need to mock. I am able to mock service methods without any problem but when I try to mock properties in the same way it give me er...
Prohibitory asked 3/10, 2017 at 17:6
2
Solved
I created an Angular Directive, that uses CSS selectors to automatically trim inputs in my application, it looks like so...
import { Directive, HostListener, forwardRef } from '@angular/core';
imp...
Harbaugh asked 1/6, 2018 at 8:51
1
I have written first test to test service class:
service class:
import { Injectable } from '@angular/core';
import {HttpClient} from '@angular/common/http'
import {IComment} from "../../models/co...
Clovah asked 20/4, 2018 at 11:3
2
Solved
The question
I have a button component that accepts a promise and disables the button until the promise has resolved and I want to write a unit test for this functionality.
My Code
My button c...
Mundane asked 3/1, 2018 at 22:31
1
© 2022 - 2024 — McMap. All rights reserved.