Skip to content

Commit

Permalink
fix: missing constructor implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-Tyrrell22 committed Sep 19, 2023
1 parent f22f423 commit fe73276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jest-test-sequencer/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ type ShardPositionOptions = ShardOptions & {
export default class TestSequencer {
private readonly _cache = new Map<TestContext, Cache>();

constructor(_options?: TestSequencerOptions);
constructor(_options?: TestSequencerOptions) {}

Check failure on line 55 in packages/jest-test-sequencer/src/index.ts

View workflow job for this annotation

GitHub Actions / Lint

Unexpected empty constructor

Check failure on line 55 in packages/jest-test-sequencer/src/index.ts

View workflow job for this annotation

GitHub Actions / TypeScript Compatibility

Unexpected empty constructor

_getCachePath(testContext: TestContext): string {
const {config} = testContext;
Expand Down

0 comments on commit fe73276

Please sign in to comment.