@fncts/test 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/control/Annotations/api.d.ts +1 -0
- package/control/Annotations/definition.d.ts +1 -0
- package/control/Annotations/live.d.ts +3 -0
- package/control/Assertion/definition.d.ts +1 -0
- package/control/RunnableSpec.d.ts +1 -1
- package/control/TestAnnotationRenderer/definition.d.ts +1 -1
- package/control/TestClock/definition.d.ts +4 -1
- package/control/TestConsole/definition.d.ts +1 -0
- package/control/TestRandom/definition.d.ts +3 -3
- package/control/TestRunner.d.ts +2 -0
- package/data/AssertionResult.d.ts +1 -1
- package/data/AssertionValue/definition.d.ts +1 -1
- package/data/TestAnnotation/api.d.ts +1 -0
- package/data/TestAnnotationMap.d.ts +1 -0
- package/package.json +4 -4
@@ -1,6 +1,7 @@
|
|
1
1
|
import { URIO, IO } from "@fncts/io/IO";
|
2
2
|
import { Has } from "@fncts/base/typeclass";
|
3
3
|
import { HashSet } from "@fncts/base/collection/immutable/HashSet";
|
4
|
+
import { Fiber } from "@fncts/io/Fiber";
|
4
5
|
import type { TestAnnotation } from "../../data/TestAnnotation.js";
|
5
6
|
import type { Annotated } from "./definition.js";
|
6
7
|
import { Annotations } from "./definition.js";
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { UIO, IO } from "@fncts/io/IO";
|
2
2
|
import { HashSet } from "@fncts/base/collection/immutable/HashSet";
|
3
|
+
import { Fiber } from "@fncts/io/Fiber";
|
3
4
|
import type { TestAnnotation } from "../../data/TestAnnotation.js";
|
4
5
|
import type { TestAnnotationMap } from "../../data/TestAnnotationMap.js";
|
5
6
|
export declare type Annotated<A> = readonly [A, TestAnnotationMap];
|
@@ -1,5 +1,8 @@
|
|
1
1
|
import { FiberRef } from "@fncts/io/FiberRef";
|
2
2
|
import { UIO, IO } from "@fncts/io/IO";
|
3
|
+
import { HashSet } from "@fncts/base/collection/immutable/HashSet";
|
4
|
+
import { Fiber } from "@fncts/io/Fiber";
|
5
|
+
import { Equatable } from "@fncts/base/typeclass";
|
3
6
|
import { TestAnnotation } from "../../data/TestAnnotation.js";
|
4
7
|
import { TestAnnotationMap } from "../../data/TestAnnotationMap.js";
|
5
8
|
import { Annotations } from "./definition.js";
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { List } from "@fncts/base/collection/immutable/List";
|
1
|
+
import { List, Cons, Nil } from "@fncts/base/collection/immutable/List";
|
2
2
|
import { Maybe } from "@fncts/base/data/Maybe";
|
3
3
|
import { Vector } from "@fncts/base/collection/immutable/Vector";
|
4
4
|
import type { TestAnnotation } from "../../data/TestAnnotation.js";
|
@@ -2,12 +2,15 @@ import { List } from "@fncts/base/collection/immutable/List";
|
|
2
2
|
import { Future } from "@fncts/io/Future";
|
3
3
|
import { FiberId } from "@fncts/base/data/FiberId/definition";
|
4
4
|
import { Fiber } from "@fncts/io/Fiber";
|
5
|
+
import { Clock } from "@fncts/io/Clock";
|
5
6
|
import { Ref } from "@fncts/io/Ref";
|
6
7
|
import { Lazy } from "@fncts/base/data/function/definition";
|
7
8
|
import { Duration } from "@fncts/base/data/Duration";
|
8
|
-
import {
|
9
|
+
import { IO, UIO } from "@fncts/io/IO";
|
9
10
|
import { HashSet } from "@fncts/base/collection/immutable/HashSet";
|
11
|
+
import { Equatable } from "@fncts/base/typeclass";
|
10
12
|
import { HashMap } from "@fncts/base/collection/immutable/HashMap";
|
13
|
+
import { Just, Nothing } from "@fncts/base/data/Maybe";
|
11
14
|
import type { Annotations } from "@fncts/test/control/Annotations";
|
12
15
|
import type { Live } from "@fncts/test/control/Live";
|
13
16
|
export declare class Data {
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { Random } from "@fncts/io/Random";
|
2
2
|
import { Ref } from "@fncts/io/Ref";
|
3
|
-
import { UIO } from "@fncts/io/IO";
|
3
|
+
import { UIO, IO } from "@fncts/io/IO";
|
4
|
+
import { Vector } from "@fncts/base/collection/immutable/Vector";
|
4
5
|
import { Byte } from "@fncts/base/data/Byte";
|
6
|
+
import { ImmutableQueue } from "@fncts/base/collection/immutable/Queue";
|
5
7
|
import { Maybe } from "@fncts/base/data/Maybe";
|
6
8
|
import { List } from "@fncts/base/collection/immutable/List";
|
7
|
-
import { ImmutableQueue } from "@fncts/base/collection/immutable/Queue";
|
8
|
-
import { Vector } from "@fncts/base/collection/immutable/Vector";
|
9
9
|
import type { ArrayInt } from "@fncts/base/util/rand";
|
10
10
|
/**
|
11
11
|
* @tsplus static fncts.test.TestRandomOps Tag
|
package/control/TestRunner.d.ts
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
import { Layer } from "@fncts/io/Layer";
|
2
2
|
import { Has } from "@fncts/base/typeclass";
|
3
3
|
import { URIO } from "@fncts/io/IO";
|
4
|
+
import { ExecutionStrategy } from "@fncts/base/data/ExecutionStrategy";
|
5
|
+
import { Clock } from "@fncts/io/Clock";
|
4
6
|
import type { RuntimeConfig } from "@fncts/io/RuntimeConfig";
|
5
7
|
import type { Annotations } from "@fncts/test/control/Annotations";
|
6
8
|
import type { TestReporter } from "@fncts/test/control/DefaultTestReporter/render";
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Maybe } from "@fncts/base/data/Maybe";
|
1
|
+
import { Maybe, Nothing } from "@fncts/base/data/Maybe";
|
2
2
|
import type { FailureDetails } from "./FailureDetails.js";
|
3
3
|
import type { GenFailureDetails } from "./GenFailureDetails.js";
|
4
4
|
export declare class FailureDetailsResult {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { LazyValue } from "@fncts/base/control/LazyValue";
|
2
|
-
import { Maybe } from "@fncts/base/data/Maybe";
|
2
|
+
import { Maybe, Nothing } from "@fncts/base/data/Maybe";
|
3
3
|
import type { AssertionIO } from "../../control/AssertionIO/definition.js";
|
4
4
|
import type { FreeBooleanAlgebra } from "../FreeBooleanAlgebra.js";
|
5
5
|
export declare const AssertionValueTypeId: unique symbol;
|
@@ -2,6 +2,7 @@ import { HashSet } from "@fncts/base/collection/immutable/HashSet";
|
|
2
2
|
import { Either } from "@fncts/base/data/Either/definition";
|
3
3
|
import { Conc } from "@fncts/base/collection/immutable/Conc";
|
4
4
|
import { Ref } from "@fncts/io/Ref";
|
5
|
+
import { Fiber } from "@fncts/io/Fiber";
|
5
6
|
import { TestAnnotation } from "./definition.js";
|
6
7
|
export declare const IgnoredTag: import("@fncts/base/data/Tag.js").Tag<number>;
|
7
8
|
/**
|
package/package.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fncts/test",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.6",
|
4
4
|
"dependencies": {
|
5
|
-
"@fncts/base": "0.0.
|
6
|
-
"@fncts/io": "0.0.
|
7
|
-
"@fncts/typelevel": "0.0.
|
5
|
+
"@fncts/base": "0.0.6",
|
6
|
+
"@fncts/io": "0.0.6",
|
7
|
+
"@fncts/typelevel": "0.0.6"
|
8
8
|
},
|
9
9
|
"exports": {
|
10
10
|
"./*": {
|