a71f801c3f
- Prisma schema: User, Session, RepoConfig, Preview, Job, WebhookToken, NoConfigComment, AdminSettings - Backend: auth (login/logout/me/first-user setup), webhook handler with HMAC verification, EC2 service, SSH service, deploy pipeline, job queue worker, cron workers - Frontend: Login with first-user detection, Dashboard, PreviewDetail with live log streaming, Settings, Repos config, Admin panel, SetupWizard, Privacy page - Docker Compose and Dockerfile for self-hosted deployment - Uses bcryptjs for Node 24 compatibility Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
71 lines
1.9 KiB
TypeScript
71 lines
1.9 KiB
TypeScript
/**
|
|
* @since 2.0.0
|
|
*/
|
|
import * as Chunk from "./Chunk.js";
|
|
import * as Either from "./Either.js";
|
|
import * as Equal from "./Equal.js";
|
|
import type * as Fiber from "./Fiber.js";
|
|
import * as HashSet from "./HashSet.js";
|
|
import type * as MutableRef from "./MutableRef.js";
|
|
import type * as SortedSet from "./SortedSet.js";
|
|
import type * as Types from "./Types.js";
|
|
/**
|
|
* @since 2.0.0
|
|
*/
|
|
export declare const TestAnnotationTypeId: unique symbol;
|
|
/**
|
|
* @since 2.0.0
|
|
*/
|
|
export type TestAnnotationTypeId = typeof TestAnnotationTypeId;
|
|
/**
|
|
* @since 2.0.0
|
|
*/
|
|
export interface TestAnnotation<in out A> extends Equal.Equal {
|
|
readonly [TestAnnotationTypeId]: {
|
|
readonly _A: Types.Invariant<A>;
|
|
};
|
|
readonly identifier: string;
|
|
readonly initial: A;
|
|
combine(a: A, b: A): A;
|
|
}
|
|
/**
|
|
* @since 2.0.0
|
|
*/
|
|
export declare const isTestAnnotation: (u: unknown) => u is TestAnnotation<unknown>;
|
|
/**
|
|
* @since 2.0.0
|
|
*/
|
|
export declare const make: <A>(identifier: string, initial: A, combine: (a: A, b: A) => A) => TestAnnotation<A>;
|
|
/**
|
|
* @since 2.0.0
|
|
*/
|
|
export declare const compose: <A>(left: Either.Either<Chunk.Chunk<A>, number>, right: Either.Either<Chunk.Chunk<A>, number>) => Either.Either<Chunk.Chunk<A>, number>;
|
|
/**
|
|
* @since 2.0.0
|
|
*/
|
|
export declare const fibers: TestAnnotation<Either.Either<Chunk.Chunk<MutableRef.MutableRef<SortedSet.SortedSet<Fiber.RuntimeFiber<unknown, unknown>>>>, number>>;
|
|
/**
|
|
* An annotation which counts ignored tests.
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
export declare const ignored: TestAnnotation<number>;
|
|
/**
|
|
* An annotation which counts repeated tests.
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
export declare const repeated: TestAnnotation<number>;
|
|
/**
|
|
* An annotation which counts retried tests.
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
export declare const retried: TestAnnotation<number>;
|
|
/**
|
|
* An annotation which tags tests with strings.
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
export declare const tagged: TestAnnotation<HashSet.HashSet<string>>;
|
|
//# sourceMappingURL=TestAnnotation.d.ts.map
|