UNPKG

@travetto/test

Version:

Declarative test framework

10 lines (9 loc) 231 B
import type { TestConsumerShape } from '../types.ts'; import { TestConsumer } from '../registry.ts'; /** * Does nothing consumer */ @TestConsumer() export class NoopConsumer implements TestConsumerShape { onEvent(): void { } }