@fedify/testing 1.8.1-dev.1237 → 1.8.1-dev.1238

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/mod.ts DELETED
@@ -1,12 +0,0 @@
1
- /**
2
- * Testing utilities for Fedify applications.
3
- *
4
- * This module provides mock implementations of the {@link Federation} and
5
- * {@link Context} interfaces to facilitate unit testing of federated applications
6
- * built with Fedify.
7
- *
8
- * @module
9
- */
10
-
11
- export { MockContext, MockFederation } from "./mock.ts";
12
- export type { SentActivity } from "./mock.ts";
package/tsdown.config.ts DELETED
@@ -1,16 +0,0 @@
1
- import { defineConfig } from "tsdown";
2
-
3
- export default defineConfig({
4
- entry: "mod.ts",
5
- dts: true,
6
- platform: "node",
7
- external: [
8
- "@fedify/fedify",
9
- "@fedify/fedify/federation",
10
- "@fedify/fedify/nodeinfo",
11
- "@fedify/fedify/runtime",
12
- "@fedify/fedify/vocab",
13
- "@fedify/fedify/webfinger",
14
- "@opentelemetry/api",
15
- ],
16
- });