Skip to content

Commit

Permalink
build: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tstelzer committed Apr 20, 2024
1 parent 248e519 commit 9e45256
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workspace/core/src/Test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ export const diff = <I, O, T>({
previousTestRun,
testRun,
}: {
previousTestRun?: TestRun<I, O, T>;
testRun: TestRun<I, O, T>;
previousTestRun?: _TestRun<I, O, T>;
testRun: _TestRun<I, O, T>;
}): Diff => {
const stats = testRun.stats;
const previousStats = previousTestRun && previousTestRun.stats;
Expand Down Expand Up @@ -155,7 +155,7 @@ export const testAll = <I, O, T>({
Classify.defaultIsNil,
Classify.defaultIsNil,
),
}: TestSuite<I, O, T>): P.Stream.Stream<TestResult<I, O, T>> =>
}: TestSuite<I, O, T>): P.Stream.Stream<_TestResult<I, O, T>> =>
P.pipe(
P.Stream.fromIterable(testCases),
P.Stream.mapEffect(testCase => test({testCase, program, classify})),
Expand Down

0 comments on commit 9e45256

Please sign in to comment.