Tracing: Zipkin datasource (#23829)

This commit is contained in:
Andrej Ocenas
2020-04-24 17:02:25 +02:00
committed by GitHub
parent 800228c100
commit 58b566a252
15 changed files with 712 additions and 33 deletions

View File

@ -0,0 +1,8 @@
import { transformResponse } from './transforms';
import { jaegerTrace, zipkinResponse } from './testData';
describe('transformResponse', () => {
it('transforms response', () => {
expect(transformResponse(zipkinResponse)).toEqual(jaegerTrace);
});
});