building and tests green

This commit is contained in:
Your Name
2026-04-08 20:41:38 +00:00
parent 42022279bb
commit f726de12e5
2 changed files with 1 additions and 2 deletions
@@ -4,7 +4,6 @@
* SPDX-License-Identifier: Apache-2.0
*/
import { testTruncateProfile } from './sidecar/testProfile.js';
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest';
import { testTruncateProfile } from './sidecar/testProfile.js';
@@ -9,7 +9,7 @@ import { StateSnapshotProcessor, type StateSnapshotProcessorOptions } from '../p
export function registerBuiltInProcessors(registry: ProcessorRegistry) {
registry.register<Record<string, never>>({
id: 'BlobDegradationProcessor',
schema: BlobDegradationProcessor.schema,
schema: { type: 'object', properties: {} },
create: (env) => new BlobDegradationProcessor(env),
});