in src/utils/getRandomTestData.ts [7:11]
export function getRandomTestData(): string {
// This should start with non-numeric data to prevent this bug from causing a test failure
// https://github.com/Azure/azure-functions-nodejs-library/issues/90
return `testData${getRandomHexString()}`;
}