Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: refactor disableConcurrency from function to getter #8068

Merged
merged 11 commits into from
Nov 9, 2023
4 changes: 4 additions & 0 deletions ts-defs-src/test-api/structure.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ interface FixtureFn {
* Disables page reloading which would happen right before each test in this fixture.
*/
disablePageReloads: this;
/**
* Disables global concurrency setting for this fixture.
aleks-pro marked this conversation as resolved.
Show resolved Hide resolved
*/
disableConcurrency(): void;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
disableConcurrency(): void;
disableConcurrency: this;

/**
* Specifies the additional information for all tests in the fixture. This information can be used in reports.
*
Expand Down
Loading