Skip to content

Commit

Permalink
fix: make async/sync test methods available via testService (#358)
Browse files Browse the repository at this point in the history
* fix: make async/sync test methods available via testService

* chore: async only public
  • Loading branch information
WillieRuemmele authored Apr 10, 2024
1 parent d8a042d commit 88ae53c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,4 @@ jspm_packages/

# parcel-bundler cache (https://parceljs.org/)
.cache
.idea/
2 changes: 1 addition & 1 deletion src/tests/testService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import { isTestResult, isValidApexClassID } from '../narrowing';

export class TestService {
private readonly connection: Connection;
private readonly asyncService: AsyncTests;
public readonly asyncService: AsyncTests;
private readonly syncService: SyncTests;

constructor(connection: Connection) {
Expand Down

0 comments on commit 88ae53c

Please sign in to comment.