postSkipSegments

This commit is contained in:
Michael C
2021-09-16 20:44:12 -04:00
parent 6e55f9d979
commit 870ade6fa9
2 changed files with 236 additions and 264 deletions

View File

@@ -37,4 +37,11 @@ export const partialDeepEquals = (actual: Record<string, any>, expected: Record<
function printActualExpected(actual: Record<string, any>, expected: Record<string, any>): void {
Logger.error(`Actual: ${JSON.stringify(actual)}`);
Logger.error(`Expected: ${JSON.stringify(expected)}`);
}
}
export const postJSON = {
method: "POST",
headers: {
"Content-Type": "application/json",
},
};