quoad
Version:
Serenity/JS: Next generation acceptance testing library for modern web applications.
19 lines (14 loc) • 471 B
text/typescript
import { ChildProcessReporter } from '@integration/testing-tools';
import { serenity, StreamReporter } from '@serenity-js/core';
import { Actors } from './Actors';
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
export = function () {
serenity.configure({
actors: new Actors(),
crew: [
new ChildProcessReporter(),
new StreamReporter(),
],
});
this.setDefaultTimeout(10000);
};