piumino
Version:
Piumino, meaning duvet in Italian, is like a duvet over the bed called Angular TestBed. It provides test helpers to test trivial things like inputs and outputs with a single line.
15 lines (14 loc) • 478 B
TypeScript
import { MatcherChainFinisher } from "../types";
import { Matcher } from "./matcher";
export declare class ModifyWithMatcher extends Matcher {
/**
* Expect the bounded property to be modified with the provided value.
*
* [input]="property"\
* (output)="property = $event"\
* (output)="property = value"
*
* @param value - The value to modify the bounded property with.
*/
modifyWith(value: unknown): MatcherChainFinisher<this>;
}