UNPKG

@seagull/logging

Version:

Logging utilities for the Seagull Framework

13 lines (11 loc) 317 B
import 'chai/register-should' import { skip, slow, suite, test, timeout } from 'mocha-typescript' import { info, messages } from '../src' @suite('Logging') export class Test { @test.skip async 'read events from stash when in test mode'() { info('srv', 'data!') messages().should.be.deep.equal('a') } }