Accept Trace file and export a metric

Summary: This diff adds support to pass a path to the trace file to the headless Flipper. The headless Flipper then exports the metrics out of it.

Reviewed By: passy

Differential Revision: D15337067

fbshipit-source-id: 61aca1ffd58e879dafe6aa176f058f7b11460952
This commit is contained in:
Pritesh Nandgaonkar
2019-05-17 03:09:23 -07:00
committed by Facebook Github Bot
parent b8f3729752
commit 89ebb11520
4 changed files with 115 additions and 26 deletions

View File

@@ -29,6 +29,12 @@ test('test makeObjectSerializable function for unnested object with no Set and M
expect(output2).toEqual(obj2);
});
test('makeObjectSerializable function for unnested object with values which returns false when put in an if condition', () => {
const obj2 = {key1: 0, key2: ''};
const output2 = makeObjectSerializable(obj2);
expect(output2).toEqual(obj2);
});
test('test deserializeObject function for unnested object with no Set and Map', () => {
let obj = {key1: 'value1', key2: 'value2'};
const output = deserializeObject(obj);