TraceSourceTests.ts
13 lines
| 269 B
| video/mp2t
|
TypeScriptLexer
|
|
r11 | import * as TraceSource from '@implab/core/log/TraceSource' | |
| import * as tape from 'tape'; | |||
| const sourceId = 'test/TraceSourceTests'; | |||
| tape('', t => { | |||
| let trace = TraceSource.get(sourceId); | |||
| let h = trace.on((sender,level,msg) => { | |||
| }); | |||
| h.destroy(); | |||
| }); |
