Optional
Readonly
filepath?: stringThe filepath to this SuiteLike, when available.
Readonly
name: Suite.NameThe name of this SuiteLike.
Runs this SuiteLike.
Optional
abortSignal: AbortSignalThe results of running this SuiteLike
A synchronous implementation:
const results = suite.run();
An asynchronous implementation:
const results = await suite.run();
Using an AbortSignal
to cancel the suite:
const ac = new AbortController();
const signal = ac.signal;
suite
.run(signal)
.then(console.log)
.catch(error => {
if (error.name === 'AbortError') {
console.log('The suite was aborted');
}
});
ac.abort();
A suite of related tests that can be run together.