python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to get more verbose output from "ng test" configuration
In short, I am looking for a way to get more verbose output from ng test.
I am not looking for more test output, but more verbose feedback on the configuration.
I am trying to configure a project, and...
bnieland
Votes: 0
Answers: 0
Angular Jasmine testing component with multiple routing functions
I am trying to write tests for one of my components. It has two functions in it that reroute to another page. I wrote two tests, and each of them works individually, but for some reason they clash whe...
Zedword
Votes: 0
Answers: 1
Karma Server spawn UNKNOWN -4094 Error in Angular Unit Tests
For no understandable reason, I am no longer able to run unit tests in my Angular project because the Karma Server is throwing the odd error shown below.
I am simply running npm test to trigger the un...
PoorInRichfield
Votes: 0
Answers: 2
How to test event handler with multiple parameters
I have a component with a click handler that takes two parameters:
onClick(row, $event): void {
$event.stopPropagation();
console.log(row);
}
<div>
<button mat-icon-button (clic...
moly
Votes: 0
Answers: 2