Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Commit

Permalink
fix(apextests): switch to synchronous testing while triggering apex t…
Browse files Browse the repository at this point in the history
…est per package (#869)

* fix(apextests): switch to synchronous testing while triggering apex test per package

re #836

* [CodeFactor] Apply fixes

Co-authored-by: codefactor-io <[email protected]>
  • Loading branch information
azlam-abdulsalam and code-factor authored Mar 1, 2022
1 parent 9169127 commit 98e7985
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export class RunAllTestsInPackageOptions extends RunSpecifiedTestsOption {
wait_time: number,
outputdir: string
) {
super(wait_time, outputdir, _sfppackage.apexTestClassses.toString(), false);
//Set to synchronous execution mode, to check whether #836 will be fixed
super(wait_time, outputdir, _sfppackage.apexTestClassses.toString(), true);
}

public get sfppackage()
Expand Down

0 comments on commit 98e7985

Please sign in to comment.